SqlSugar/OrmTest/UnitTest/Setting/MapColumn.cs

19 lines
460 B
C#
Raw Normal View History

2017-04-30 17:26:45 +08:00
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest.UnitTest
{
2017-05-16 13:55:57 +08:00
public class MapColumn : UnitTestBase
2017-04-30 17:26:45 +08:00
{
public SqlSugarClient GetInstance()
{
SqlSugarClient db = new SqlSugarClient(new SystemTablesConfig() { ConnectionString = Config.ConnectionString, DbType = DbType.SqlServer });
return db;
}
}
}