This commit is contained in:
sunkaixuan
2017-05-01 14:23:13 +08:00
parent 8ef15c0697
commit f3128e88e0
9 changed files with 21 additions and 11 deletions

View File

@@ -22,7 +22,7 @@ namespace OrmTest.PerformanceTesting
DbType = DbType.SqlServer,
IsAutoCloseConnection = false
});
db.IgnoreComumns.Add("TestId", "Student");
db.IgnoreColumns.Add("TestId", "Student");
db.Queryable<Student>().Select(it => new ViewModelStudent2 { Name = it.Name, Student = it }).ToList();
base.Execute("sqlsuagr", () =>
{