mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
27 lines
625 B
C#
27 lines
625 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Linq.Expressions;
|
|
using SqlSugar;
|
|
using OrmTest.Models;
|
|
using System.Data.SqlClient;
|
|
|
|
namespace OrmTest
|
|
{
|
|
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
//Expression To Sql Unit Test
|
|
int eachCount = 1000;
|
|
new OrmTest.ExpressionTest.Select(eachCount).Init();
|
|
new OrmTest.ExpressionTest.Field(eachCount).Init();
|
|
new OrmTest.ExpressionTest.Where(eachCount).Init();
|
|
}
|
|
}
|
|
}
|