SqlSugar/Src/Asp.NetCore2/SqlSeverTest/Demo/DemoE_CodeFirst.cs

59 lines
2.2 KiB
C#
Raw Normal View History

2019-05-17 22:26:30 +08:00
using SqlSugar;
2023-06-28 14:19:04 +08:00
using SqlSugar.DbConvert;
2019-05-17 22:26:30 +08:00
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()
{
DbType = DbType.SqlServer,
2019-06-04 21:03:27 +08:00
ConnectionString = Config.ConnectionString3,
2019-05-17 22:26:30 +08:00
InitKeyType = InitKeyType.Attribute,
IsAutoCloseConnection = true
});
2023-06-28 14:19:04 +08:00
db.DbMaintenance.CreateDatabase();
2019-05-17 22:26:30 +08:00
db.CodeFirst.InitTables(typeof(CodeFirstTable1));//Create CodeFirstTable1
2023-06-28 14:19:04 +08:00
db.Insertable(new CodeFirstTable1() { Name = "a", Text = "a", CreateTime = DateTime.Now }).ExecuteCommand();
2019-05-17 22:26:30 +08:00
var list = db.Queryable<CodeFirstTable1>().ToList();
2023-06-07 09:31:17 +08:00
db.CodeFirst.InitTables<CodeFirst3311>();
db.Insertable(new CodeFirst3311() { }).ExecuteCommand();
2023-06-28 14:19:04 +08:00
db.Insertable(new CodeFirst3311() { ts = DateTime.Now.TimeOfDay }).ExecuteCommand();
db.CodeFirst.InitTables<CodeFirstadfafaAA>();
db.Insertable(new CodeFirstadfafaAA() { Name = "0" }).ExecuteCommand();
var list3=db.Queryable<CodeFirstadfafaAA>().ToList();
2019-05-17 22:26:30 +08:00
Console.WriteLine("#### CodeFirst end ####");
}
}
2023-06-28 14:19:04 +08:00
public class CodeFirstadfafaAA
{
[SugarColumn(ColumnDataType = "varchar(32)", SqlParameterDbType = typeof(CommonPropertyConvert))]
public string Name { get; set; }
2019-05-17 22:26:30 +08:00
2023-06-28 14:19:04 +08:00
public int carry_status { get; set; }
}
2023-06-07 09:31:17 +08:00
public class CodeFirst3311
{
[SugarColumn(IsNullable =true)]
public TimeSpan? ts { get; set; }
}
2019-05-17 22:26:30 +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; }
}
}