Support IncludeIndependantAssociations for EF Core
See original GitHub issueWith EF Core 5 now supporting many-to-many relationships without explicitly mapping the join table, can this be revisited?
It may be possible to find the needed associations here:
// get entries
var entityEntries = ChangeTracker.Entries();
// get one entry
EntityEntry entityEntry = entityEntries.FirstOrDefault();
// get collections
var collectionEntries = entityEntry.Collections;
// get one collection
CollectionEntry collectionEntry = collectionEntries.FirstOrDefault();
Issue Analytics
- State:
- Created 3 years ago
- Comments:11 (6 by maintainers)
Top Results From Across the Web
Audit.Net Entity Framework - Independant Associations ...
1 Answer 1 ... You can include the associations as follows: Audit.EntityFramework.Configuration.Setup() .ForAnyContext(config => config .
Read more >Eager Loading of Related Data - EF Core
Eager loading of related data with Entity Framework Core. ... Supported operations are: Where , OrderBy , OrderByDescending , ThenBy ...
Read more >Entity Framework Support Policies
The Entity Framework Core support policy aligns with the .NET support policy. See current and planned releases for more information. Entity ...
Read more >How To Track Entity Changes With EF Core | Audit Logging
Check out my Pragmatic Clean Architecture course: https://www.milanjovanovic.tech/pragmatic-clean-architecture Support me on Patreon to ...
Read more >Entity Framework Support - Documentation
dotConnect for Oracle fully supports ADO.NET Entity Framework, including Entity Framework Core. The article consists of the following sections: What is ADO.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I tested out using
MapTable()
and it works great! Thanks again.This was implemented on version 16.5.5, please upgrade your references and re-test using
MapExplicit()
orMapTable()