mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
完成 sqlite codefirst curd expression 开发与测试
This commit is contained in:
@ -66,7 +66,7 @@ namespace FreeSql.Tests.MySql {
|
||||
[Fact]
|
||||
public void ExecuteDeleted() {
|
||||
|
||||
delete.Where(a => a.Id > 0).ExecuteDeleted();
|
||||
//delete.Where(a => a.Id > 0).ExecuteDeleted();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -79,7 +79,7 @@ namespace FreeSql.Tests.MySql {
|
||||
var items = new List<Topic>();
|
||||
for (var a = 0; a < 10; a++) items.Add(new Topic { Id = a + 1, Title = $"newtitle{a}", Clicks = a * 100 });
|
||||
|
||||
insert.AppendData(items.First()).ExecuteInserted();
|
||||
//insert.AppendData(items.First()).ExecuteInserted();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user