You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
733 B
C#
16 lines
733 B
C#
|
5 years ago
|
namespace EntityFrameworkCore.Jet.Data
|
||
|
5 years ago
|
{
|
||
|
|
public class PreciseDatabaseCreator
|
||
|
|
: JetDatabaseCreator
|
||
|
|
{
|
||
|
|
public override void CreateDatabase(
|
||
|
|
string fileNameOrConnectionString,
|
||
|
|
DatabaseVersion version = DatabaseVersion.Newest,
|
||
|
|
CollatingOrder collatingOrder = CollatingOrder.General,
|
||
|
|
string databasePassword = null)
|
||
|
|
=> new DaoDatabaseCreator().CreateDatabase(fileNameOrConnectionString, version, collatingOrder, databasePassword);
|
||
|
|
|
||
|
|
public override void CreateDualTable(string fileNameOrConnectionString, string databasePassword = null)
|
||
|
|
=> new AdoxDatabaseCreator().CreateDualTable(fileNameOrConnectionString, databasePassword);
|
||
|
|
}
|
||
|
|
}
|