DbContextScope icon indicating copy to clipboard operation
DbContextScope copied to clipboard

A simple and flexible way to manage your Entity Framework DbContext instances

Results 4 DbContextScope issues
Sort by recently updated
recently updated
newest added

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

enhancement

> 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...

bug

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...