This commit is contained in:
2881099
2022-04-29 12:32:11 +08:00
parent b320d084fa
commit 10d9090fb4
5 changed files with 189 additions and 116 deletions

View File

@ -125,7 +125,7 @@ namespace FreeSql
await AddOrUpdateNavigateListAsync(item, true, null, cancellationToken);
return;
default:
if (_tableIdentitys.Length == 1 && _tableReturnColumns.Length == 1)
if (_tableIdentitys.Length == 1)
{
foreach (var s in data)
await AddPrivAsync(s, false, cancellationToken);

View File

@ -128,7 +128,7 @@ namespace FreeSql
AddOrUpdateNavigateList(item, true, null);
return;
default:
if (_tableIdentitys.Length == 1 && _tableReturnColumns.Length == 1)
if (_tableIdentitys.Length == 1)
{
foreach (var s in data)
AddPriv(s, false);