EFDesigner icon indicating copy to clipboard operation
EFDesigner copied to clipboard

Entity Framework visual design surface and code-first code generation for EF6, Core and beyond

Results 35 EFDesigner issues
Sort by recently updated
recently updated
newest added

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...

enhancement-L

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` -...

enhancement-XXL

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 =>...

enhancement-XXL

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...

Visual Studio issue

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...

question

"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.

investigating