mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-30 12:47:57 +08:00
25 lines
468 B
C#
25 lines
468 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;
|
|
using OrmTest.UnitTest;
|
|
using OrmTest.PerformanceTesting;
|
|
|
|
namespace OrmTest
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
|
|
Demo.VersionValidation.Init();
|
|
}
|
|
}
|
|
}
|