Update demo

This commit is contained in:
sunkaixuan 2024-08-25 15:45:09 +08:00
parent 61e90d456e
commit 6d51dac4df
4 changed files with 78 additions and 0 deletions

View File

@ -31,6 +31,7 @@ namespace OrmTest
}
public static void Init()
{
Unitsdfa1231.Init();
Unitadfad1.Init();
UnitWeek.Init();
UnitTest.Init();

View File

@ -0,0 +1,38 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
internal class Unitsdfa1231
{
public static void Init()
{
var db = NewUnitTest.Db;
db.CodeFirst.InitTables<CnDataDTO>();
var sql1 = db.Queryable<CnDataDTO>()
.Distinct()
.Select(it => new CnDataDTO()
{
time = SqlFunc.ToDate(it.time)
}, true)
.MergeTable()
.OrderBy(it => it.time)
.ToList();
}
[SugarTable("Unit1sacndata")]
public class CnDataDTO
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "序号")]
public int id { get; set; }
public string name { get; set; }
public string code { get; set; }
public string type { get; set; }
public DateTime time { get; set; }
}
}
}

View File

@ -33,6 +33,7 @@ namespace OrmTest
}
public static void Init()
{
Unitsdfa1231.Init();
Unitasxdfaaa.Init();
UnitSplitadfaf1.Init();
Unitaadfas1.Init();

View File

@ -0,0 +1,38 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
internal class Unitsdfa1231
{
public static void Init()
{
var db = NewUnitTest.Db;
db.CodeFirst.InitTables<CnDataDTO>();
var sql1 = db.Queryable<CnDataDTO>()
.Distinct()
.Select(it => new CnDataDTO()
{
time = SqlFunc.ToDate(it.time)
}, true)
.MergeTable()
.OrderBy(it => it.time)
.ToList();
}
[SugarTable("Unit1sacndata")]
public class CnDataDTO
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "序号")]
public int id { get; set; }
public string name { get; set; }
public string code { get; set; }
public string type { get; set; }
public DateTime time { get; set; }
}
}
}