You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
4.2 KiB
111 lines
4.2 KiB
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()
|
|
{
|
|
DbType = DbType.ClickHouse,
|
|
ConnectionString = Config.ConnectionString3,
|
|
InitKeyType = InitKeyType.Attribute,
|
|
IsAutoCloseConnection = true
|
|
},
|
|
db => {
|
|
db.Aop.OnLogExecuting = (s, p) => Console.WriteLine(s);
|
|
});
|
|
//db.DbMaintenance.CreateDatabase();
|
|
db.CodeFirst.InitTables(typeof(CodeFirstTable1));//Create CodeFirstTable1
|
|
db.Insertable(new CodeFirstTable1() { Name = "a", Text = "a" }).ExecuteCommand();
|
|
var list = db.Queryable<CodeFirstTable1>().ToList();
|
|
TestBool(db);
|
|
TestGuid(db);
|
|
db.CodeFirst.InitTables<CodeFirstTable2>();
|
|
db.Insertable(new List<CodeFirstTable2>() { new CodeFirstTable2() { CreateTime = DateTime.Now, Name = "a", Text = new ulong[] { 1 } } }).ExecuteCommand();
|
|
var list2=db.Queryable<CodeFirstTable2>().ToList();
|
|
Console.WriteLine("#### CodeFirst end ####");
|
|
}
|
|
private static void TestGuid(SqlSugarClient db)
|
|
{
|
|
db.CodeFirst.InitTables<GuidTest>();
|
|
db.DbMaintenance.TruncateTable("BoolTest");
|
|
var Id = 1;
|
|
db.Insertable<GuidTest>(new GuidTest() { A = Guid.Empty, Id = Id }).ExecuteCommand();
|
|
Console.Write(db.Queryable<GuidTest>().First().A);
|
|
db.Updateable<GuidTest>(new GuidTest() { A = Guid.NewGuid(), Id = Id }).ExecuteCommand();
|
|
Console.Write(db.Queryable<GuidTest>().First().A);
|
|
db.CodeFirst.InitTables<GuidTest22>();
|
|
db.Insertable(new GuidTest22() { }).ExecuteReturnSnowflakeId();
|
|
var list=db.Queryable<GuidTest22>().ToList();
|
|
}
|
|
private static void TestBool(SqlSugarClient db)
|
|
{
|
|
db.CodeFirst.InitTables<BoolTest>();
|
|
db.DbMaintenance.TruncateTable("BoolTest");
|
|
var Id = 1;
|
|
db.Insertable<BoolTest>(new BoolTest() { A = true, Id = Id }).ExecuteCommand();
|
|
Console.Write(db.Queryable<BoolTest>().First().A);
|
|
db.Updateable<BoolTest>(new BoolTest() { A = false, Id = Id }).ExecuteCommand();
|
|
Console.Write(db.Queryable<BoolTest>().First().A);
|
|
db.CodeFirst.InitTables<CKTest>();
|
|
}
|
|
}
|
|
|
|
[SqlSugar.ClickHouse.CKTable(@"engine = MergeTree PARTITION BY toYYYYMM(dt)
|
|
ORDER BY(toYYYYMM(dt))
|
|
SETTINGS index_granularity = 8192;")]
|
|
public class CKTest
|
|
{
|
|
public string Id { get; set; }
|
|
public DateTime dt { get; set; }
|
|
}
|
|
public class GuidTest22
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long Id { get; set; }
|
|
[SugarColumn(IsNullable = true)]
|
|
public Guid? A { get; set; }
|
|
[SugarColumn(IsNullable =true)]
|
|
public DateTime? Date { get; set; }
|
|
}
|
|
public class GuidTest
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long Id { get; set; }
|
|
public Guid A { get; set; }
|
|
}
|
|
public class BoolTest
|
|
{
|
|
[SugarColumn(IsPrimaryKey =true)]
|
|
public long Id { get; set; }
|
|
public bool A { get; set; }
|
|
}
|
|
public class CodeFirstTable2
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
[SugarColumn(ColumnDataType = "Array(UInt64)",IsArray =true)]//custom
|
|
public UInt64[] Text { get; set; }
|
|
[SugarColumn(IsNullable = true)]
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
public class CodeFirstTable1
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
[SugarColumn(ColumnDataType = "String")]//custom
|
|
public string Text { get; set; }
|
|
[SugarColumn(IsNullable = true)]
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
}
|
|
|