EntityFramework-Reverse-POCO-Code-First-Generator icon indicating copy to clipboard operation
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...

Results 149 EntityFramework-Reverse-POCO-Code-First-Generator issues
Sort by recently updated
recently updated
newest added

Is it possible for the solution to provide Default Constraints against the model for EF6?

Hi, Is there a solution for working with fields of type "sql_variant" ? I have a couple of fields defined as such, which I have to read, but EF throws...

Hi There Question 1 #130 I see an option IncludeTableValuedFunctions but no option for Scalar-valued Functions how can I bring both in? Some of my TableValuedFunctions uses Scalar-valued Functions Also,...

enhancement

Create a series of short video tutorials covering all the topics that version 3 can do.

If a stored proc has any type of a If-Else statement in it the tool reads it as having 2 resultsets. It's Sql Server that tells the generator there will...

enhancement

I'm finding the naming of FooReturnModel nonstandard, I'd rather my models be standardized as FooModel. In working with stored procedures that return entities this is the naming 3.1.3 is using...

enhancement

Thanks to **Thad Lowry** for this suggestion. Add an option so we can generated poco configuration code from separate classes into OnModelCreating. From this: ```c# protected override void OnModelCreating(ModelBuilder modelBuilder)...

enhancement

I have a database with a table named `TimeZone`. I have disabled pluralization as it is undesired in my case. When I generate the DbContext, there is an ambiguous reference...

enhancement

From the Q&A area...but I'm getting a lot of stored procedures whether like the one below that is a fire and forget or ones that return single values (scalars) that...

To investigate

Thanks to **Oscar Meszar** for finding this bug. This works: ```c# var fakeContext = new FakeDemoContext(); fakeContext.Companies.Add(new Company { CompanyName = "test", UnitId = "test" }); var list = await...