You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Description("The database template to specify when creating a database in Entity Framework. If not specified, PostgreSQL defaults to \"template1\".")]
973
-
[DisplayName("EF Template Database")]
974
-
[NpgsqlConnectionStringProperty]
975
-
publicstring?EntityTemplateDatabase
976
-
{
977
-
get=>_entityTemplateDatabase;
978
-
set
979
-
{
980
-
_entityTemplateDatabase=value;
981
-
SetValue(nameof(EntityTemplateDatabase),value);
982
-
}
983
-
}
984
-
string?_entityTemplateDatabase;
985
-
986
-
/// <summary>
987
-
/// The database admin to specify when creating and dropping a database in Entity Framework. This is needed because
988
-
/// Npgsql needs to connect to a database in order to send the create/drop database command.
989
-
/// If not specified, defaults to "template1". Check NpgsqlServices.UsingPostgresDBConnection for more information.
990
-
/// </summary>
991
-
[Category("Entity Framework")]
992
-
[Description("The database admin to specify when creating and dropping a database in Entity Framework. If not specified, defaults to \"template1\".")]
0 commit comments