コード例 #1
0
ファイル: AdoAdapter.cs プロジェクト: loozhang/Simple.Data
 public override IEnumerable<IDictionary<string, object>> UpsertMany(string tableName, IList<IDictionary<string, object>> list, bool isResultRequired, Func<IDictionary<string, object>, Exception, bool> errorCallback)
 {
     var upserter = new AdoAdapterUpserter(this);
     return upserter.UpsertMany(tableName, list, isResultRequired, errorCallback);
 }
コード例 #2
0
        public override IEnumerable <IDictionary <string, object> > UpsertMany(string tableName, IList <IDictionary <string, object> > list, bool isResultRequired, Func <IDictionary <string, object>, Exception, bool> errorCallback)
        {
            var upserter = new AdoAdapterUpserter(this);

            return(upserter.UpsertMany(tableName, list, isResultRequired, errorCallback));
        }