SqlSugar/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/UEnum.cs
2023-11-06 21:44:56 +08:00

74 lines
2.5 KiB
C#

using Newtonsoft.Json.Converters;
using SqlSugar.DbConvert;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public partial class NewUnitTest
{
public static void Enum()
{
Db.CodeFirst.InitTables<Unit00Z11C12>();
Db.Insertable(new Unit00Z11C12() { type = UnitType.a, type2 = null }).ExecuteCommand();
var x=Db.Queryable<Unit00Z11C12>().Select(it=>new {
x=it.type,
x2=it.type2
}).ToList();
var xx = Db.Queryable<Unit00Z11C12>().Select(it => new {
x = it.type.ToString()
}).ToList();
if (xx.First().x != "a")
{
throw new Exception("unit error");
}
var x2 = Db.Queryable<Unit00Z11C12>().ToList();
Db.Updateable<Unit00Z11C12>().SetColumns(it => it.type2 == UnitType.b)
.Where(it=>true).ExecuteCommand();
var x3 = Db.Queryable<Unit00Z11C12>().ToList();
foreach (var item in x3)
{
item.type2 = null;
}
Db.Updateable<Unit00Z11C12>(x3).WhereColumns(it=>it.type).ExecuteCommand();
var x4 = Db.Queryable<Unit00Z11C12>().ToList();
var db = NewUnitTest.Db;
db.CodeFirst.InitTables<Unit00Z11C1yyafa>();
var type = UnitType.a;
xxx.unitType = type;
var list=db.Queryable<Unit00Z11C1yyafa>()
.Where(it=>it.type==xxx.unitType)
.ToList();
}
public class xxx
{
public static UnitType unitType { get; set; }
}
public class Unit00Z11C1yyafa
{
[SqlSugar.SugarColumn(ColumnDataType = "varchar(20)",SqlParameterDbType =typeof(EnumToStringConvert), IsNullable = false)]
public UnitType type { get; set; }
[SqlSugar.SugarColumn(ColumnDataType = "varchar(20)", SqlParameterDbType = typeof(EnumToStringConvert), IsNullable = true)]
public UnitType? type2 { get; set; }
}
public class Unit00Z11C12
{
[SqlSugar.SugarColumn(ColumnDataType = "int", IsNullable = false)]
public UnitType type { get; set; }
[SqlSugar.SugarColumn(ColumnDataType ="int",IsNullable =true)]
public UnitType? type2 { get; set; }
}
public enum UnitType {
a=-1,
b=2,
c=3
}
}
}