This commit is contained in:
sunkaixuan
2017-05-31 10:45:43 +08:00
parent e890b716cb
commit da24a13df7
2 changed files with 20 additions and 19 deletions

View File

@@ -17,28 +17,28 @@ namespace OrmTest
{ {
static void Main(string[] args) static void Main(string[] args)
{ {
///***Unit Test***/ /***Unit Test***/
//new Field(1).Init(); new Field(1).Init();
//new Where(1).Init(); new Where(1).Init();
//new Method(1).Init(); new Method(1).Init();
//new JoinQuery(1).Init(); new JoinQuery(1).Init();
//new SingleQuery(1).Init(); new SingleQuery(1).Init();
//new SelectQuery(1).Init(); new SelectQuery(1).Init();
//new AutoClose(1).Init(); new AutoClose(1).Init();
//new Insert(1).Init(); new Insert(1).Init();
//new Delete(1).Init(); new Delete(1).Init();
//new Update(1).Init(); new Update(1).Init();
//new Mapping(1).Init(); new Mapping(1).Init();
///***Performance Test***/ /***Performance Test***/
//new SqlSugarPerformance(100).Select(); new SqlSugarPerformance(100).Select();
/***Demo***/ /***Demo***/
OrmTest.Demo.Query.Init(); OrmTest.Demo.Query.Init();
//OrmTest.Demo.Insert.Init(); OrmTest.Demo.Insert.Init();
//OrmTest.Demo.Delete.Init(); OrmTest.Demo.Delete.Init();
//OrmTest.Demo.Update.Init(); OrmTest.Demo.Update.Init();
//OrmTest.Demo.DbFirst.Init(); OrmTest.Demo.DbFirst.Init();
} }
} }
} }

View File

@@ -9,8 +9,9 @@ namespace SqlSugar
{ {
public class EntityInfo public class EntityInfo
{ {
private string _DbTableName;
public string EntityName { get; set; } public string EntityName { get; set; }
public string DbTableName { get; set; } public string DbTableName { get { return _DbTableName == null ? EntityName : _DbTableName; } set { _DbTableName = value; } }
public Type Type { get; set; } public Type Type { get; set; }
public List<EntityColumnInfo> Columns { get; set; } public List<EntityColumnInfo> Columns { get; set; }
} }