修复表达式简化的错误

This commit is contained in:
2023-11-16 14:58:54 +08:00
parent a5f3d473e6
commit dca3712828

View File

@@ -13,6 +13,6 @@ public class BaseEntity<TKey> : Entity, IEntity where TKey : IEquatable<TKey>
public override object[] GetKeys()
{
return [id];
return new object[] { id };
}
}