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.

21 lines
517 B
C#

1 month ago
using Chloe;
1 month ago
using Chloe.Infrastructure;
1 month ago
using Chloe.RDBMS.DDL;
using Chloe.SQLite;
using Chloe.SQLite.DDL;
1 month ago
using DNSD_DB.Mapper;
1 month ago
namespace DNSD_DB
{
public class SqlLiteTool
{
public static void CreateTable(string db)
{
1 month ago
DbConfiguration.UseTypeBuilders(typeof(StudentMap));
1 month ago
IDbContext dbContext = new SQLiteContext(new SQLiteConnectionFactory(db));
new SQLiteTableGenerator(dbContext).CreateTables(TableCreateMode.CreateIfNotExists);
}
}
}