- 修复 2.0.103 Uow.Orm 事务 bug;

This commit is contained in:
2881099
2020-12-07 15:44:12 +08:00
parent 8182238087
commit 32d4f671fe
3 changed files with 9 additions and 4 deletions

View File

@ -27,6 +27,10 @@ namespace aspnetcore_transaction.Controllers
virtual public object Get([FromServices] BaseRepository<Song> repoSong, [FromServices] BaseRepository<Detail> repoDetail, [FromServices] SongRepository repoSong2,
[FromServices] SongService serviceSong)
{
//repoSong.Insert(new Song());
//repoDetail.Insert(new Detail());
//repoSong2.Insert(new Song());
serviceSong.Test1();
return "111";
}