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

41 lines
1.4 KiB
C#
Raw Normal View History

2019-05-07 13:17:27 +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()
{
2019-05-07 15:25:55 +08:00
Console.WriteLine("");
Console.WriteLine("#### CodeFirst Start ####");
2019-05-07 13:17:27 +08:00
SqlSugarClient db = new SqlSugarClient(new ConnectionConfig()
{
DbType = DbType.SqlServer,
2019-05-23 09:05:47 +08:00
ConnectionString = "server=.;uid=sa;pwd=haosql;database=cCcMyDbBaseTest",
2019-05-07 13:17:27 +08:00
InitKeyType = InitKeyType.Attribute,
IsAutoCloseConnection = true
});
2019-05-23 09:05:47 +08:00
db.DbMaintenance.CreateDatabase(@"c:\");
2019-05-07 13:17:27 +08:00
db.CodeFirst.InitTables(typeof(CodeFirstTable1));//Create CodeFirstTable1
2019-05-17 20:49:22 +08:00
db.Insertable(new CodeFirstTable1() { Name = "a", Text="a" }).ExecuteCommand();
var list = db.Queryable<CodeFirstTable1>().ToList();
2019-05-07 15:25:55 +08:00
Console.WriteLine("#### CodeFirst end ####");
2019-05-07 13:17:27 +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; }
}
}