Compare commits
No commits in common. "0a6f2e20118586f4bf035ce5a58dc0923ee30483" and "df1e87897f2aaa3711061bd818ede99034147f92" have entirely different histories.
0a6f2e2011
...
df1e87897f
|
@ -101,10 +101,10 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
|
||||
if (unit == ValueUnit.Custom)
|
||||
{
|
||||
return answer + string.Empty + customUnit;
|
||||
return answer + customUnit;
|
||||
}
|
||||
|
||||
return answer +string.Empty + unitDataList.Where(y => y.Unit == unit).Select(x => x.UnitName).FirstIsNullReturnEmpty();
|
||||
return answer + unitDataList.Where(y => y.Unit == unit).Select(x => x.UnitName).FirstIsNullReturnEmpty();
|
||||
}
|
||||
public string GetEntityAuditOpt(EntityEntry entityEntry)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue