You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
Visual Studio 15.7.5
Entity Framework Visual Editor 1.2.2.1
Using EFCore
I have three tables:
Site, Investigator, and a join table to link the two (for many-to-many relationship)
The join table just has InvestigatorId and SiteId properties, and I set them both to Identity = True
…rly in context (#14). Many thanks to @Falthazar!
- Fix for issue #12 - Cascade delete (#14). Added another enum value for delete behavior (now is Cascade, None and Default) and changed code generation to force no cascade delete if set to 'None' ('None' used to mean 'Use the default behavior', which is now, more explicitly, the 'Default' option).
Changed docs to reflect above.
Version change to 1.2.3
Visual Studio 15.7.5
Entity Framework Visual Editor 1.2.2.1
Using EFCore
I have three tables:
Site, Investigator, and a join table to link the two (for many-to-many relationship)
The join table just has
InvestigatorId
andSiteId
properties, and I set them both to Identity = TrueThe generated context does this:
Should be:
The text was updated successfully, but these errors were encountered: