Add Oracle Test

This commit is contained in:
sunkaixuan
2017-08-03 23:12:44 +08:00
parent 9da866e34d
commit f1b5973e32
43 changed files with 3826 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using OrmTest.Models;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest.UnitTest
{
public class MapTable : UnitTestBase
{
public void Init()
{
//IsAutoCloseConnection
for (int i = 0; i < 200; i++)
{
var db = GetInstance();
var x = db.Queryable<Student>().ToList();
}
}
}
}