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...
Hi, For decimal type there are no properties generated, which would indicate how many numbers are allowed for this field. In our database we have limits set for each decimal...
Hi. I have already made upgrade from v3.0.5 to v3.1.3. Unfortunetly There is a problem with expression which I use in filtering: `"ViewSchemaExcludeFilter()"`. All I want to achive is to...
Hi Simon Just seeking a clarification on your licensing. My case is for a specific project that I will be working on for about 6 months. I am happy enough...
I want to add some generated methods to my entities (e.g. based on their primary keys). I found that I can do this in the Table.WriteInsideClassBody in EF.Reverse.POCO.v3.ttinclude. However, if...
From @TimSirmovics I am playing around with a library that multi targets .NET Standard 2.0 and .NET Framework 4.72, using EF Core for the .NET Standard version and EF 6...
If you have an Unique Index on a table: `CREATE UNIQUE INDEX [NameOfTheIndex] ON [TableName] ([Identifier])` It will be handled in the POCO's ModelConfiguration like: `builder.HasAlternateKey(x => x.Identifier).HasName("NameOfTheIndex");` Which is...
Hi. I'm mapping a existing table that i can't edit. The problem is that a field have a white space at end: "SELECT ... [MS Entity ] FROM ..." In...
This could be a quirk of my particular environment, but being able to generate the fake db context into a separate would allow us to effectively hide the unit testing...
We are using reverse poco to generate pocos and mappings for existing DB. We would like to split a massive table into multiple entities. Tried UpdateColumns to hide some columns...