efcore
efcore copied to clipboard
EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations.
Currently we use default (lax) mode, should allow to specify strict, so that we throw when path is invalid
## Ask a question I've define a convention in `ConfigureConventions` where all strings are to have a max length of 256. I'd like to override this for some properties, for...
Split off from #13850 By default, a column is nullable in the database if the property to which it is mapped is nullable. This is true even if the converter...
It is my understanding that CosmosDb has no way to turn triggers on by default. They have to be turned on per call. EF Core doesn't turn these on, so...
Something like: ```cs entity.Where(x => x.JsonCollection[0].NestedReference.Name != "Foo") ``` When done in projection, this breaks the ordinal key logic, so we need to force AsNoTracking for these queries. We could...
When json has navigation to the parent entity, it's possible to build linq that would navigate back to the parent, e.g. ``` entity.Select(x => x.OwnedReferece.OwnedNested.Parent.Name) ``` currently we throw as...