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 was using Microsoft.SqlServer.Types with EF 6.4. I am now migrating to EFCore 3.1 and unable to resolve the generated types for geography. Spatial.DbGeography Microsoft.SqlServer.Types.SqlGeography
When generating the configuration for SqlCe image, the following is ```c# Property(x => x.Logo) .HasColumnName(@"Logo") .HasColumnType("image") .IsOptional() .HasMaxLength(null); ``` This throws an exception when trying to write any value to...
I've added the following to the `...v3.ttinclude` file to surface the `Entry` member of the DBContext: ``` EntityEntry Entry(TEntity entity) where TEntity : class;{{#newline}} EntityEntry Entry(object entity);{{#newline}} ``` For me...
In order to handle configurable database options while using the factory methods I think it the following template would create the methods that most developers would want to have available,...
I have a many-to-many relationship between my two tables in my issue tracking database: My `Issue` table is related to my `UploadedFile` table via a many-to-many association in the `IssueUploadedFile`...
I have a table "RecipientListImport" with a FK to "RecipientList" which has a UK constraint on it. This creates a 0..1 relationship between the two. This is the definition for...
We have used EF POCO Generator for a legacy enterprise application with about 3400+ tables and 800+ views. It was database-first using EDMX files. But we were not going to...
I am requesting some sort of indicator or comment to be added to the generated method for stored procedure calls that might indicate that there was an error when trying...
Hi I have today decided to use a table valued function in my c# code for the fiirst time. However I don't seem to be able to generate them up...