优化代码生成

This commit is contained in:
不做码农 2023-11-22 21:37:26 +08:00
parent 332acde5a0
commit ea4acde028
3 changed files with 7 additions and 6 deletions

View File

@ -113,7 +113,7 @@ $end
/// <returns></returns>
public int Update${replaceDto.ModelTypeName}(${replaceDto.ModelTypeName} model)
{
//var response = Update(w => w.${replaceDto.PKName} == model.${replaceDto.PKName}, it => new ${replaceDto.ModelTypeName}()
//return Update(w => w.${replaceDto.PKName} == model.${replaceDto.PKName}, it => new ${replaceDto.ModelTypeName}()
//{
$foreach(item in genTable.Columns)
$if((item.IsEdit))
@ -121,7 +121,6 @@ $if((item.IsEdit))
$end
${end}
//});
//return response;
$if(null != genTable.SubTableName && "" != genTable.SubTableName)
return Context.UpdateNav(model).Include(z1 => z1.${genTable.SubTable.ClassName}Nav).ExecuteCommand() ? 1 : 0;
$else
@ -203,8 +202,8 @@ $end
.ToPage(parm);
return response;
$end
}
$end
/// <summary>
/// 查询导出表达式

View File

@ -1,4 +1,6 @@
global using System.Collections.Generic;
global using System;
global using SqlSugar;
global using Newtonsoft.Json;
global using Newtonsoft.Json;
global using MiniExcelLibs.Attributes;
global using System.ComponentModel.DataAnnotations;

View File

@ -706,8 +706,8 @@ namespace ZR.Service
//Insert(menuList);
var x = Context.Storageable(menuList)
.SplitInsert(it => !it.Any())
.SplitUpdate(it => !it.Any())
//.SplitInsert(it => !it.Any())
//.SplitUpdate(it => !it.Any())
.WhereColumns(it => new { it.MenuName, it.ParentId })
.ToStorage();
x.AsInsertable.ExecuteCommand();//插入可插入部分;