David Boone
David Boone
Love the fact that navigation property renames are now supported! However, ran into an issue where self-referencing relationships' names were not preserved. I've attached a sample project with an SQLite...
Fixes https://github.com/EnterpriseDB/barman/issues/227
Resolves https://github.com/loresoft/EntityFrameworkCore.Generator/issues/576 Adds support for generics, e.g. PostgreSQL's array and range types.
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...
Noticed build workflow is failing, suffered same issue locally. This did the trick for me
Use the full name for generic types not in any of the `_defaultNamespaces` namespaces. Instead of `public NpgsqlRange ActiveWeeks { get; set; }` Generates `public NpgsqlTypes.NpgsqlRange ActiveWeeks { get; set;...