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...
It would be helpful to have extended properties values from database inserted into code as some attribute (CommentAttribute) on class and property level. Currently implementation inserts the properties as comments...
Hello Simon, I think I just found another bug: here's the situation: Currently on a Web Hosting: Smarter Asp with a hosted SQL Server, moving to a VPS with Linux...
I have a SQL view named vwSiteNotification. I have a TableFilter array that includes that view: ``` TableFilter = (Table t) => { String[] tableNames = { "Sites", "Notifications", "vwSiteNotification"...
I have a SP and I have dynamic SQL getting executed and it returns a resultset. But when the Reverse POCO generates a method for the SP and it returns...
Our testing requirements requires us to use SQLite. However, when generating the model, certain database types, like int should become "INTEGER"; ie for AUTOINCREMENT (ie IDENTITY columns); Would it possible...
I've created a [fork](https://github.com/Gravemind2401/EntityFramework-Reverse-POCO-Code-First-Generator) of this project with support for SQLite databases when using the `System.Data.SQLite` NuGet package with EF6 which may be useful for mobile applications (namely UWP or...
if I wanted a specific table, and stored procedure from an app schema, should this work? I get the table, but the stored procedures arent coming through. ```c# FilterSettings.TableFilters.Add(new RegexIncludeFilter("tblImportedFileSummary"));...
Allow for this to be run using a dotnet command for .NET Core projects. That will allow you to generate from the command line, or a console application. The T4...
Hello! I have wrote already about 1-12 years ago about filtration of objects. With our databases that have several schemas and objects with the same name in different schemas it's...
Ambient : - DB SqlServer - EF6 (6.4.4 version) Consider the table "Articles" (the creation script below) and the View "v_Articles" (the creation script below), that contains a recursion on...