EntityFrameworkCore.Generator
EntityFrameworkCore.Generator copied to clipboard
Generate Entity Framework Core model from an existing database
Resolves #547 Add an option to add attributes on navigation properties in the generated entity classes. YAML usage: ```yaml data: entity: relationshipAttributes: 'Ignore' ``` Code generation result: ```csharp public partial...
In our company, we use your generator for many years now with many developers. Over the years, we added some features so it works better with our solutions. As a...
In our company, we use your generator for many years now with many developers. Over the years, we added some features so it works better with our solutions. As a...
Resolves #545 Add an option to insert additional using statements in the generated entity classes. YAML usage: ```yaml data: entity: baseClass: 'IEntityBase' additionalUsings: 'Company.Project.Domain.Interfaces' ``` Code generation result: ```csharp using...
Resolves #543
Resolves https://github.com/loresoft/EntityFrameworkCore.Generator/issues/576 Adds support for generics, e.g. PostgreSQL's array and range types.
Bumps [Microsoft.CodeAnalysis.CSharp.Scripting](https://github.com/dotnet/roslyn) from 4.5.0 to 4.10.0. Release notes Sourced from Microsoft.CodeAnalysis.CSharp.Scripting's releases. .NET 6.0.1 Release .NET 5.0.4 Release .NET 5.0.2 Release Notes Install Instructions Repos Core Changelog Sourced from Microsoft.CodeAnalysis.CSharp.Scripting's...
I have a table with a column of `real[]` data type in my Postgres database, and whenever I generate the entity code for it it generates broken code. An example:...
Took a crack at fixing https://github.com/loresoft/EntityFrameworkCore.Generator/issues/574 and came up with this. It resolved the issue I was having with my SQLite test case, but I'm not super familiar with the...
If a table has a foreign-key relationship to another table's non-primary key, the required `.HasPrincipalKey(...)` call is not added to the Map file. e.g. ``` CREATE TABLE thing (id int...