DbContextScope
DbContextScope copied to clipboard
A simple and flexible way to manage your Entity Framework DbContext instances
Is there any thoughts on supporting EntityFramework 6.3.0 and .NETStandard 2.1? Current compatibility states "_Compatible with .net 4.0+ (EF6) and .net Standard 1.3+ (EFCore)._" https://www.nuget.org/packages/EntityFramework.DbContextScope/ https://www.nuget.org/packages/EntityFramework/6.3.0
> Locating source for 'C:\Users\Adam\Documents\GitHub\apawsey\DbContextScope\EntityFramework.DbContextScope\DbContextCollection.cs'. Checksum: SHA1 {c3 15 50 d6 95 b b7 e7 26 b6 a8 46 7c d8 79 57 2c 55 17 70} Get this error...
I am using .NET Core 1.1 and EF Core, in which my MyDbContext simply inherits from EntityFrameworkCore.DbContext. Unfortunately, DbContextScope expects only an EntityFramework.DbContextScope.IDbContext. How do I resolve this? I tried...
Currently if `AutoDetectChangesEnabled `is set to `false `in a constructor of a `DbContext`, it is again set to `true` by `DbContextCollection.Get()`. This is not expected. In my current case I...