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