mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-25 10:08:11 +08:00
25 lines
465 B
C#
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();
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|