add test code

This commit is contained in:
2881099 2021-01-22 18:57:50 +08:00
parent fca4c884d7
commit 7f819c758e

View File

@ -18,7 +18,7 @@ namespace FreeSql.Tests.Issues
public void MySqlInsertOrUpdate()
{
var fsql = g.mysql;
var rst = fsql.Insert<Song_Tag>(new[] { new Song_Tag { SongId = 1, TagId = 1 } })
var rst = fsql.Insert(new[] { new Song_Tag { SongId = 1, TagId = 1 } })
.NoneParameter()
.MySqlIgnoreInto()
.ToSql();