mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-23 12:33:44 +08:00
Bug: db.InsertNav DataAop
This commit is contained in:
@@ -99,7 +99,7 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
Check.ExceptionEasy($"{typeof(TChild).Name} need primary key ", $"{typeof(TChild).Name}需要主键");
|
Check.ExceptionEasy($"{typeof(TChild).Name} need primary key ", $"{typeof(TChild).Name}需要主键");
|
||||||
}
|
}
|
||||||
var x = this._Context.Storageable(children).WhereColumns(new string[] { pkColumn.PropertyName }).ToStorage();
|
var x = this._Context.Storageable(children).WhereColumns(new string[] { pkColumn.PropertyName }).GetStorageableResult();
|
||||||
var insertData = children = x.InsertList.Select(it => it.Item).ToList();
|
var insertData = children = x.InsertList.Select(it => it.Item).ToList();
|
||||||
var IsNoExistsNoInsert = _navOptions != null && _navOptions.OneToManyIfExistsNoInsert == true;
|
var IsNoExistsNoInsert = _navOptions != null && _navOptions.OneToManyIfExistsNoInsert == true;
|
||||||
if (_NavigateType == NavigateType.OneToMany && IsFirst == false && IsNoExistsNoInsert == false)
|
if (_NavigateType == NavigateType.OneToMany && IsFirst == false && IsNoExistsNoInsert == false)
|
||||||
|
@@ -211,6 +211,86 @@ namespace SqlSugar
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public StorageableResult<T> GetStorageableResult()
|
||||||
|
{
|
||||||
|
if (whereFuncs == null || whereFuncs.Count == 0)
|
||||||
|
{
|
||||||
|
return this.Saveable().GetStorageableResult();
|
||||||
|
}
|
||||||
|
if (this.allDatas.Count == 0)
|
||||||
|
return new StorageableResult<T>()
|
||||||
|
{
|
||||||
|
//AsDeleteable = this.Context.Deleteable<T>().AS(asname).Where(it => false),
|
||||||
|
//AsInsertable = this.Context.Insertable(new List<T>()).AS(asname),
|
||||||
|
//AsUpdateable = this.Context.Updateable(new List<T>()).AS(asname),
|
||||||
|
InsertList = new List<StorageableMessage<T>>(),
|
||||||
|
UpdateList = new List<StorageableMessage<T>>(),
|
||||||
|
DeleteList = new List<StorageableMessage<T>>(),
|
||||||
|
ErrorList = new List<StorageableMessage<T>>(),
|
||||||
|
IgnoreList = new List<StorageableMessage<T>>(),
|
||||||
|
OtherList = new List<StorageableMessage<T>>(),
|
||||||
|
TotalList = new List<StorageableMessage<T>>()
|
||||||
|
};
|
||||||
|
var pkInfos = this.Context.EntityMaintenance.GetEntityInfo<T>().Columns.Where(it => it.IsPrimarykey);
|
||||||
|
if (whereExpression == null && !pkInfos.Any())
|
||||||
|
{
|
||||||
|
Check.ExceptionEasy(true, "Need primary key or WhereColumn", "使用Storageable实体需要主键或者使用WhereColumn指定条件列");
|
||||||
|
}
|
||||||
|
if (whereExpression == null && pkInfos.Any())
|
||||||
|
{
|
||||||
|
this.Context.Utilities.PageEach(allDatas, 300, item => {
|
||||||
|
var addItems = this.Context.Queryable<T>().Filter(null, this.isDisableFilters).TranLock(this.lockType).AS(asname).WhereClassByPrimaryKey(item.Select(it => it.Item).ToList()).ToList();
|
||||||
|
dbDataList.AddRange(addItems);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
var pkProperties = GetPkProperties(pkInfos);
|
||||||
|
var messageList = allDatas.Select(it => new StorageableMessage<T>()
|
||||||
|
{
|
||||||
|
Item = it.Item,
|
||||||
|
Database = dbDataList,
|
||||||
|
PkFields = pkProperties
|
||||||
|
}).ToList();
|
||||||
|
foreach (var item in whereFuncs.OrderByDescending(it => (int)it.key))
|
||||||
|
{
|
||||||
|
List<StorageableMessage<T>> whereList = messageList.Where(it => it.StorageType == null).ToList();
|
||||||
|
Func<StorageableMessage<T>, bool> exp = item.value1;
|
||||||
|
var list = whereList.Where(exp).ToList();
|
||||||
|
foreach (var it in list)
|
||||||
|
{
|
||||||
|
it.StorageType = item.key;
|
||||||
|
it.StorageMessage = item.value2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var delete = messageList.Where(it => it.StorageType == StorageType.Delete).ToList();
|
||||||
|
var update = messageList.Where(it => it.StorageType == StorageType.Update).ToList();
|
||||||
|
var inset = messageList.Where(it => it.StorageType == StorageType.Insert).ToList();
|
||||||
|
var error = messageList.Where(it => it.StorageType == StorageType.Error).ToList();
|
||||||
|
var ignore = messageList.Where(it => it.StorageType == StorageType.Ignore || it.StorageType == null).ToList();
|
||||||
|
var other = messageList.Where(it => it.StorageType == StorageType.Other).ToList();
|
||||||
|
StorageableResult<T> result = new StorageableResult<T>()
|
||||||
|
{
|
||||||
|
_WhereColumnList = wherecolumnList,
|
||||||
|
_AsName = asname,
|
||||||
|
_Context = this.Context,
|
||||||
|
//AsDeleteable = this.Context.Deleteable<T>().AS(asname),
|
||||||
|
//AsUpdateable = this.Context.Updateable(update.Select(it => it.Item).ToList()).AS(asname),
|
||||||
|
//AsInsertable = this.Context.Insertable(inset.Select(it => it.Item).ToList()).AS(asname),
|
||||||
|
OtherList = other,
|
||||||
|
InsertList = inset,
|
||||||
|
DeleteList = delete,
|
||||||
|
UpdateList = update,
|
||||||
|
ErrorList = error,
|
||||||
|
IgnoreList = ignore,
|
||||||
|
TotalList = messageList
|
||||||
|
};
|
||||||
|
//if (this.whereExpression != null)
|
||||||
|
//{
|
||||||
|
// result.AsUpdateable.WhereColumns(whereExpression);
|
||||||
|
// result.AsDeleteable.WhereColumns(update.Select(it => it.Item).ToList(), whereExpression);
|
||||||
|
//}
|
||||||
|
//result.AsDeleteable.Where(delete.Select(it => it.Item).ToList());
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
public async Task<StorageableResult<T>> ToStorageAsync()
|
public async Task<StorageableResult<T>> ToStorageAsync()
|
||||||
{
|
{
|
||||||
|
@@ -23,6 +23,7 @@ namespace SqlSugar
|
|||||||
IStorageable<T> SplitDelete(Func<StorageableInfo<T>, bool> conditions, string message = null);
|
IStorageable<T> SplitDelete(Func<StorageableInfo<T>, bool> conditions, string message = null);
|
||||||
IStorageable<T> SplitOther(Func<StorageableInfo<T>, bool> conditions, string message = null);
|
IStorageable<T> SplitOther(Func<StorageableInfo<T>, bool> conditions, string message = null);
|
||||||
StorageableResult<T> ToStorage();
|
StorageableResult<T> ToStorage();
|
||||||
|
StorageableResult<T> GetStorageableResult();
|
||||||
Task<StorageableResult<T>> ToStorageAsync();
|
Task<StorageableResult<T>> ToStorageAsync();
|
||||||
IStorageable<T> As(string tableName);
|
IStorageable<T> As(string tableName);
|
||||||
int ExecuteCommand();
|
int ExecuteCommand();
|
||||||
|
Reference in New Issue
Block a user