mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 00:01:11 +08:00
Update unit
This commit is contained in:
parent
bb3f0e3f7b
commit
19874ca865
@ -1,4 +1,5 @@
|
|||||||
using System;
|
using SqlSugar;
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
@ -20,10 +21,17 @@ namespace OrmTest
|
|||||||
list= Db.Queryable<UnitJsonTest>().ToList();
|
list= Db.Queryable<UnitJsonTest>().ToList();
|
||||||
UValidate.Check("order2", list.First().Order.Name, "Json");
|
UValidate.Check("order2", list.First().Order.Name, "Json");
|
||||||
var list2 = Db.Queryable<UnitJsonTest>().ToList();
|
var list2 = Db.Queryable<UnitJsonTest>().ToList();
|
||||||
|
Db.CodeFirst.InitTables<UnitArray2>();
|
||||||
|
Db.Insertable(new UnitArray2() { MenuIds = new float[] { 1, 2 } }).ExecuteCommand();
|
||||||
|
var x=Db.Queryable<UnitArray2>().ToList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class UnitArray2
|
||||||
|
{
|
||||||
|
[SugarColumn(ColumnDataType = "real []", IsArray = true)]
|
||||||
|
public float[] MenuIds { get; set; }
|
||||||
|
}
|
||||||
public class UnitJsonTest
|
public class UnitJsonTest
|
||||||
{
|
{
|
||||||
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||||||
|
Loading…
Reference in New Issue
Block a user