mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-01-21 18:48:27 +08:00
Synchronization code
This commit is contained in:
@@ -28,10 +28,7 @@ namespace SqlSugar
|
||||
|
||||
|
||||
public ICustomConditionalFunc CustomConditionalFunc { get; set; }
|
||||
public string CustomP1 { get; set; }
|
||||
public string CustomP2 { get; set; }
|
||||
public string CustomP3 { get; set; }
|
||||
public string CustomP4 { get; set; }
|
||||
public dynamic CustomParameterValue { get; set; }
|
||||
|
||||
public ConditionalType ConditionalType { get; set; }
|
||||
[Newtonsoft.Json.JsonIgnoreAttribute]
|
||||
|
||||
@@ -511,6 +511,12 @@ namespace SqlSugar
|
||||
dt.TableName = tableName;
|
||||
return this.Context.Storageable(dt);
|
||||
}
|
||||
public StorageableDataTable Storageable(Dictionary<string, object> dictionary, string tableName)
|
||||
{
|
||||
DataTable dt = this.Context.Utilities.DictionaryListToDataTable(new List<Dictionary<string, object>>() { dictionary });
|
||||
dt.TableName = tableName;
|
||||
return this.Context.Storageable(dt);
|
||||
}
|
||||
|
||||
public IStorageable<T> Storageable<T>(List<T> dataList) where T : class, new()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user