EntityFrameworkCore
EntityFrameworkCore copied to clipboard
NoSQL providers for EntityFramework Core
Are you working on EntityFramework Core 3.0 support?
I created a database named EFCoreTest and added the following user ``` db.createUser( { user: "x", pwd: passwordPrompt(), // or cleartext password roles: [ { role: "readWrite", db: "EFCoreTest" }...
pull request to fix issue https://github.com/BlueshiftSoftware/EntityFrameworkCore/issues/41 changes: - added test case for execute same async query twice on different dbContext instances - removed compiling query from lambda expression in MongoDbDatabase.CompileQuery()...
Hello. I always get ObjectDisposedException when execute same query on differend instances of dbContext. Firs execution is succesfull but second execution on different instance of dbContext fails with ObjectDisposedException: `...
MissingMethodException: Method not found: 'Microsoft.EntityFrameworkCore.Metadata.Internal.InternalEntityTypeBuilder Microsoft.EntityFrameworkCore.Metadata.Internal.InternalModelBuilder.Entity(System.Type, Microsoft.EntityFrameworkCore.Metadata.Internal.ConfigurationSource)'.
From .NETCore 3 Preview 4 and up MongoDB driver will fail unless using version 2.8.1 while this library seems to be using 2.7.3. Related: https://jira.mongodb.org/browse/CSHARP-2595?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.8.1%20ORDER%20BY%20key%20ASC
Multiple DbContexts select query can't work concurrently. Please see the code below. BTW, if I use async query, "System.ObjectDisposedException : Cannot access a disposed object." will occur. ` public async...
zooDbContext.Employees .FirstOrDefault(e => e.FirstName == "xx") will retrieve all records from employees collection in mongodb. Reproduce step: 1. Open mongo shell and use the command "db.setProfilingLevel(2)" to open the query...
Great library, We are investigating using IdentityServer4 for authentication and currently all MongoDb versions are not working well. My question, have you tried using your library (with Identity support) in...