Add json 2 sql test

This commit is contained in:
sunkaixuan
2022-06-20 13:43:35 +08:00
parent e5cc8d0a75
commit cd366b8bd1
7 changed files with 467 additions and 2 deletions

View File

@@ -0,0 +1,51 @@
using SqlSugar;
using System;
using System.Collections.Generic;
namespace Test
{
partial class Program
{
static void Main(string[] args)
{
JsonClient jsonToSqlClient = new JsonClient();
//jsonToSqlClient.Context = new SqlSugarClient(new ConnectionConfig()
//{
// DbType = DbType.SqlServer,
// IsAutoCloseConnection = true,
// ConnectionString = "server=.;uid=sa;pwd=sasa;database=SQLSUGAR4XTEST"
//});
jsonToSqlClient.Context = new SqlSugarClient(new ConnectionConfig()
{
DbType = DbType.MySql,
IsAutoCloseConnection = true,
ConnectionString = "server=localhost;Database=SqlSugar4xTest;Uid=root;Pwd=haosql"
}); ;
jsonToSqlClient.Context.Aop.OnLogExecuted = (sql, p) =>
{
Console.WriteLine(sql);
};
Insetable01(jsonToSqlClient);
Description(jsonToSqlClient);
FuncText(jsonToSqlClient);
OrderByTest(jsonToSqlClient);
GroupByTest(jsonToSqlClient);
SelectTest(jsonToSqlClient);
JoinTest(jsonToSqlClient);
WhereTest(jsonToSqlClient);
PageTest(jsonToSqlClient);
PageTest2(jsonToSqlClient);
PageTest3(jsonToSqlClient);
Updateable01(jsonToSqlClient);
Deleteable01(jsonToSqlClient);
Console.WriteLine();
}
}
}