This commit is contained in:
sunkaixuan 2025-02-01 13:07:59 +08:00
parent 020d2d1c32
commit 57d1aa665b
2 changed files with 43 additions and 0 deletions

View File

@ -33,6 +33,7 @@ namespace OrmTest
}
public static void Init()
{
Unityadfasasdfa.Init();
Unitsdfaafa.Init();
Unitadfayyadfa.Init();
Unitsdfa1231.Init();

View File

@ -0,0 +1,42 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
internal class Unityadfasasdfa
{
public static void Init()
{
var db = NewUnitTest.Db;
db.CurrentConnectionConfig.MoreSettings = new ConnMoreSettings()
{
IsCorrectErrorSqlParameterName = true
};
try
{
db.Ado.ExecuteCommand("CREATE TABLE [unitadfaaaafa2](\r\n[打印费(折扣等)] varchar(255) NOT NULL,id varchar(50) )");
}
catch (Exception)
{
}
db.Updateable<Unitadfa121>()
.SetColumns(it =>it.a==it.a )
.Where(it=>it.id=="a")
.ExecuteCommand();
Console.WriteLine("Start");
}
[SugarTable("unitadfaaaafa2")]
public class Unitadfa121
{
[SqlSugar.SugarColumn(ColumnName ="打印费(折扣等)")]
public string a { get; set; }
[SqlSugar.SugarColumn(IsPrimaryKey =true)]
public string id { get; set; }
}
}
}