PostgreSqlMigrationSqlGenerator
PostgreSqlMigrationSqlGenerator copied to clipboard
Class to handle Entity Framework migrations with PostgreSQL
I have found anotother bug, you can't change type of parameter. For example if have _-------------------------------------------------------------- public string Code { get; set; } --------------------------------------------------------------_ and change it to _-------------------------------------------------------------- public...
Table by default will be put into 'dbo' schema. If I want to specify another schema I can do it like this: _-------------------------------------------------------------- [Table("Movie", Schema = "cinema")] --------------------------------------------------------------_ and it...