You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.6 KiB
52 lines
1.6 KiB
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"
|
|
}); ;
|
|
TestHelper.InitDatabase(jsonToSqlClient);
|
|
|
|
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);
|
|
WhereTest2(jsonToSqlClient);
|
|
PageTest(jsonToSqlClient);
|
|
PageTest2(jsonToSqlClient);
|
|
PageTest3(jsonToSqlClient);
|
|
|
|
Updateable01(jsonToSqlClient);
|
|
Deleteable01(jsonToSqlClient);
|
|
|
|
|
|
Console.WriteLine();
|
|
}
|
|
}
|
|
}
|
|
|