EntityFramework-Reverse-POCO-Code-First-Generator
EntityFramework-Reverse-POCO-Code-First-Generator copied to clipboard
EntityFramework Reverse POCO Code First Generator - Beautifully generated code that is fully customisable. This generator creates code as if you reverse engineered a database and lovingly created the...
The `Settings.CommandTimeout` is used for reverse engineering the database only. Reverse engineering from a local database is very fast, however some users use production servers in remote locations that a...
Hi, in my use-case I am using the "Entity" suffix for entity names (EFCore 3, v3.1.3). When generating foreign keys with a one-to-one relationship, the `.HasForeignKey()` method is written out...
In v2 of the template all non-null columns of a view would automatically be set as primary keys. This no longer works, even though there is a comment in the...
I'm trying to create POCO classes with EF Reverse POCO Code First Generator, using Mysql Database from Oracle, but isn't working. I wish you tell me if this extension support...
Hello, Per the the existing EF tickets: [https://github.com/dotnet/efcore/issues/7533](url) [https://github.com/dotnet/EntityFramework.Docs/issues/594](url) It would be great if the generator could support adding in the work around to the generated context in order to...
We would like to include the description attribute on enums. Is there a way to do that? we arent finding a setting the the tt files for this. example output...
Hello, I am doing your plural sight course, but not able to get Composite Key scenarios Can you please help with - [ ] Setup of Composite Key, with reverse...
The multi-context functionality was designed so you can fully control exactly what tables/columns are generated and how they are named. Mainly for security reasons, but also speed. No point having...
I have a table, UserDocument, that has two references to the User table: UserId and CreatedByUserId. This generates: ```c# public virtual User CreatedByUser { get; set; } public virtual User...
I am probably going about thisa completely the wrong way. But, I need to rename several table/entity classes. In the legacy database, and in the code there are several tables...