From 2be6c2d23d6606aab145fd378aee02a49c90f51e Mon Sep 17 00:00:00 2001 From: Halil ibrahim Kalkan Date: Fri, 21 Dec 2018 11:34:36 +0300 Subject: [PATCH] Add summary to IEntity.GetKeys method. --- .../Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/IEntity.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/IEntity.cs b/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/IEntity.cs index 8afbabb26e..58e607b120 100644 --- a/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/IEntity.cs +++ b/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/IEntity.cs @@ -6,6 +6,10 @@ /// public interface IEntity { + /// + /// Returns an array of ordered keys for this entity. + /// + /// object[] GetKeys(); }