Arthur Vickers
Arthur Vickers
/cc @AndriySvyryd
When a property is marked as value-generated, as your key property is by convention, then EF will generate a key value unless a non-default key value has already been set....
@flostony There currently isn't any way to disable this behavior. We will consider it.
This issue is lacking enough information for us to be able to fully understand what is happening. Please attach a small, runnable project or post a small, runnable code listing...
We discussed this again, but came to the same conclusion as before. Since LINQ is inherently generic for anything other than the most trivial case, we don't want to lead...
@jkotas Per discussion a few weeks back with Hunter, any AOT solution needs to handle real .NET code including EF Core, not just a limited subset of simpler .NET code.
Note for triage: I am able to reproduce this. Regression from 7. Still repros on latest daily. Full stack trace: ``` System.InvalidOperationException: Cannot scaffold C# literals of type 'System.Reflection.NullabilityInfoContext'. The...
The workaround here is to call `modelBuilder.Entity().ToTable(null);` before mapping the functions.
Also happens with this model, which only contains a single relationship: ```C# public class ContextAnnotated0 : Context101 { public class Blog { public int Id { get; set; } public...