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

I am trying to add a const string with the field name of each field to allow the use of strongly typed field names instead of magic strings. Our previous...

enhancement

Hi @sjh37, I am having some trouble with settings/running the tests 1. Categorize the tests / database technologie. 2. Have a "pre-test" to generate/recreate the db - Have you every...

To investigate

Blazor webassembly projects creates a Client, Server and Shared projects. Typically you wouldn't share the EF poco objects, but you may want to reuse the enums. Therefore, you may want...

I have around 20+ views in a database, but when I select includeviews = true; only two views are created as keyless tables, the remainder seem to be ignored. My...

To investigate

I am trying to get a single table from a list of many similar named tables, and also excluding related tables that are not needed. For example, I have around...

The same error for "integer" and date "timestamp without time zone" and maybe more, i didn't go further. Why so, if database have this types?

This will keep the FakeDbContexts clean and tidy and easy to read without the clutter.

enhancement

If a stored procedure contains conditional statements, such as this: ``` sql IF(@someVar < @otherVar) BEGIN SELECT a,b,c WHERE blah ELSE SELECT a,b,c WHERE blah OR blah END ``` The...

enhancement

When Union All is used in a query, the properties in the resulting return model are always of the nullable type. Here is a simple example i used: ![image](https://cloud.githubusercontent.com/assets/15340253/17853509/2bbb6a28-686d-11e6-8bad-21e3b608bb43.png) Returnmodels...

I have a number of Stored Procedures that take arguments and return a list of objects. With the actual database it works well. I am however trying to mock the...