SqlSugar/Src/Asp.NetCore2/PgSqlTest/UserTestCases/Unitdsafasyss.cs
2025-05-06 16:01:41 +08:00

25 lines
465 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class Unitsdfasyss
{
public static void Init()
{
var db = NewUnitTest.Db;
db.QueryableByObject(typeof(Order)).AS("Order").ToList();
db.QueryableByObject(typeof(Order)).AS("\"public\".Order").ToList();
}
}
}