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

First of all, thanks heaps for such a useful tool. We've bought a license. We have a collection of ephemeral indexes on our DB that are created and destroyed as...

enhancement

Hello @sjh37, I'm using the latest (3.10.0) and have a MS-SQL stored procedure such as below. Shouldn't params with default values in the sproc correspond to optional params in the...

enhancement
To investigate

I have a table status ```sql CREATE TABLE types.status (id int PRIMARY KEY, name varchar(10)) INSERT INTO "types"."Status" (id, "name") VALUES(1, 'Todo'), (2, 'InProgress'), (3, 'Done'); ``` in tt file...

bug

Currently, we can only create entities and place them in a single folder, as defined by the setting: `Settings.PocoFolder = @"Entities";`. Is there a configuration that allows the folder structure...

enhancement

I have a table B with a primary key which is also a foreign key to table A. When running my T4 file I get a class A with a...

https://woodruff.dev/temporal-tables-in-ef-core-bringing-time-travel-to-your-data/ Given ```cs public class Employee { public int Id { get; set; } public string Name { get; set; } public string Position { get; set; } public decimal...

Hi, Can you make the generator generate one-to-one navigation property with foreign key is unique key/unique index? Example: I have two tables Table 1: Id (PK), Name Table 2: Id...

enhancement

Bumps [System.Text.Json](https://github.com/dotnet/runtime) from 7.0.0 to 8.0.5. Release notes Sourced from System.Text.Json's releases. .NET 8.0.5 Release What's Changed [release/8.0-staging] Fix AsyncVoidMethodBuilder race condition around SynchronizationContext by @​github-actions in dotnet/runtime#99640 [release/8.0-staging] Always...

dependencies

I am trying to make my output more in line with DDD guidelines, and I could use a little help on how to achieve some items. What I have done:...