SqlSugar/Src/Asp.Net/AccessTest/Demo/DemoE_CodeFirst.cs

48 lines
1.6 KiB
C#
Raw Normal View History

2022-02-20 14:13:19 +08:00
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OrmTest
{
public class DemoE_CodeFirst
{
public static void Init()
{
Console.WriteLine("");
Console.WriteLine("#### CodeFirst Start ####");
SqlSugarClient db = new SqlSugarClient(new ConnectionConfig()
{
2022-02-20 14:17:54 +08:00
DbType = DbType.Access,
2022-02-20 14:13:19 +08:00
ConnectionString = Config.ConnectionString3,
InitKeyType = InitKeyType.Attribute,
IsAutoCloseConnection = true
});
2022-08-11 19:10:32 +08:00
//db.DbMaintenance.CreateDatabase();
2022-02-20 14:13:19 +08:00
db.CodeFirst.InitTables(typeof(CodeFirstTable1));//Create CodeFirstTable1
db.Insertable(new CodeFirstTable1() { Name = "a", Text="a" }).ExecuteCommand();
var list = db.Queryable<CodeFirstTable1>().ToList();
2022-08-11 19:10:32 +08:00
db.CodeFirst.InitTables<DateTimeTest2>();
db.Insertable(new DateTimeTest2() { }).ExecuteCommand();
2022-02-20 14:13:19 +08:00
Console.WriteLine("#### CodeFirst end ####");
}
}
2022-08-11 19:10:32 +08:00
public class DateTimeTest2
{
[SugarColumn(IsNullable =true)]
public DateTime? dt { get; set; }
}
2022-02-20 14:13:19 +08:00
public class CodeFirstTable1
{
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
public int Id { get; set; }
public string Name { get; set; }
[SugarColumn(ColumnDataType = "Nvarchar(255)")]//custom
public string Text { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime CreateTime { get; set; }
}
}