Arthur Vickers
Arthur Vickers
@MmMapIoSpace I'm not following everything you are trying to do--you'll need to attach a small, runnable project or post a small, runnable code listing that reproduces what you are seeing...
@StuartSpencer-CSIRO Data in migrations usually comes from the model, rather than calling these APIs directly. See [Data seeding](https://learn.microsoft.com/en-us/ef/core/modeling/data-seeding) for more information.
@AndriySvyryd What's your reasoning for assigning this to change tracking?
@theissto The problem here is that the graph you attach here: ```C# var rootUpdate = new Root() { Id = root.Id, Children = new() { // Grandchild new Child() {...
@z505985755 This is by-design--see [Explicitly Tracking Entities](https://learn.microsoft.com/en-us/ef/core/change-tracking/explicit-tracking) in the docs. Specifically, there is no way to know that the navigation is null because it was loaded and then set to...
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...
Also https://github.com/dotnet/efcore/pull/34401#pullrequestreview-2236550363
This is tracked by #14537 for views.
@PrgOrcl There is nothing I am aware of currently in EF Core that will scaffold columns using sequences. If the column has a default constraint that uses the sequence, then...