mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 13:06:50 +08:00
-
This commit is contained in:
parent
fce2e2be9b
commit
fd463376aa
@ -19,9 +19,21 @@ namespace OrmTest
|
||||
Id = 1,
|
||||
Id2 = 2,
|
||||
Id3 = 3,
|
||||
Id4=4
|
||||
Id4 = 4
|
||||
}).ExecuteCommand();
|
||||
var list = Db.Queryable<UnitCodeTest2222>().ToList();
|
||||
Db.CodeFirst.InitTables<UnitCodeTest2a2c22>();
|
||||
Db.Insertable(new UnitCodeTest2a2c22()
|
||||
{
|
||||
a = 1,
|
||||
b = new byte[] { 1, 2, 3 }
|
||||
})
|
||||
.ExecuteCommand();
|
||||
var xx=Db.Queryable<UnitCodeTest2a2c22>().Select(it => new
|
||||
{
|
||||
id=it.a,
|
||||
b=it.b
|
||||
}).ToList();
|
||||
}
|
||||
public class UnitCodeTest1
|
||||
{
|
||||
@ -30,6 +42,14 @@ namespace OrmTest
|
||||
[SqlSugar.SugarColumn(DefaultValue="now()", IndexGroupNameList =new string[] {"group1" } )]
|
||||
public DateTime? CreateDate { get; set; }
|
||||
}
|
||||
|
||||
public class UnitCodeTest2a2c22
|
||||
{
|
||||
public int a { get; set; }
|
||||
[SqlSugar.SugarColumn(ColumnDataType ="blob")]
|
||||
public byte[] b { get; set; }
|
||||
}
|
||||
|
||||
public class UnitCodeTest2222
|
||||
{
|
||||
public uint Id { get; set; }
|
||||
|
Loading…
Reference in New Issue
Block a user