修改cache key格式

This commit is contained in:
lindj 2024-01-18 15:06:52 +08:00
parent 97e359468f
commit 854111315b

View File

@ -81,7 +81,7 @@ public class DataRecord
{ {
if (TryGetField(record, columnName, out var value)) if (TryGetField(record, columnName, out var value))
{ {
return $"{TableName}_{columnName}_{value}"; return $"{TableName}_{value}";
}else }else
throw new IndexOutOfRangeException($"Column name:{columnName} not found in this record."); throw new IndexOutOfRangeException($"Column name:{columnName} not found in this record.");