EFDesigner
EFDesigner copied to clipboard
Entity Framework visual design surface and code-first code generation for EF6, Core and beyond
Split from #225 as a separate issue; submitted by [alprinias](https://github.com/msawczyn/EFDesigner/issues?q=is%3Aissue+is%3Aopen+author%3Aalprinias) ... (when) importing from an existing database. The database tables had their foreign keys defined and their names were not...
To support custom ASP.NET Core Identity scenario with EFDesigner some manual work has to be done. 1. Implement 7 custom entities which inherit types from `Microsoft.AspNetCore.Identity` namespace: - `IdentityUser` -...
From https://docs.microsoft.com/en-us/ef/core/what-is-new/ef-core-5.0/whatsnew ``` protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder .Entity() .HasMany(p => p.Tags) .WithMany(p => p.Posts) .UsingEntity( j => j .HasOne(pt => pt.Tag) .WithMany() .HasForeignKey(pt => pt.TagId), j =>...
In VS 2022 when the .efmodel file is opened, there is no toolbox items available. If I select Show All in the Toolbox context menu, it shows the EF Model...
Hi I've returned to a c# project which used this framework and on updating to the latest versions i can now see that INotifyPropertyChanged has been removed, now none of...
"Is Identity" (key) field missing when creating a new entity from the designer drag and drop. (in vs 2022 - when opening this issue I didn't notice there are two...
I am Using the VS 2019 Version in a .NET Framework 4.6.1 WinForms project. Also I am using EF6 in Version "Latest" (6.4.4). I created a new model, added a...
Setting the Auto Include property to true doesn't appear to have any effect on the generated code.