v0.10.7, - 调整 Insert<T1>(IEnumerable<T1> source) 参数类型改成了 List;

This commit is contained in:
28810
2019-10-06 12:32:32 +08:00
parent 78fded3f8e
commit 2b72c849d9
31 changed files with 186 additions and 28 deletions

View File

@ -407,6 +407,12 @@ namespace FreeSql.Tests
[Fact]
public void Test1()
{
var testlistinsert = new List<AuthorTest>();
g.sqlite.Insert(testlistinsert).ExecuteAffrows();
var gkjdjd = g.sqlite.Select<AuthorTest>().Where(a => a.Post.AsSelect().Count() > 0).ToList();
var testrunsql1 = g.mysql.Select<TaskBuild>().Where(a => a.OptionsEntity04 > DateTime.Now.AddDays(0).ToString("yyyyMMdd").TryTo<int>()).ToSql();