mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
add Examples/orm_vs
This commit is contained in:
@ -45,6 +45,10 @@ namespace FreeSql.Internal.CommonProvider {
|
||||
if (source != null) _source.Add(source);
|
||||
return this;
|
||||
}
|
||||
public IInsert<T1> AppendData(T1[] source) {
|
||||
if (source != null) _source.AddRange(source);
|
||||
return this;
|
||||
}
|
||||
public IInsert<T1> AppendData(IEnumerable<T1> source) {
|
||||
if (source != null) _source.AddRange(source.Where(a => a != null));
|
||||
return this;
|
||||
|
Reference in New Issue
Block a user