Show / Hide Table of Contents

Interface IEntity<TKey>

Defines an entity with a single primary key with "Id" property.

Inherited Members
IEntity.GetKeys()
Namespace: Volo.Abp.Domain.Entities
Assembly: Volo.Abp.Ddd.Domain.dll
Syntax
public interface IEntity<TKey> : IEntity
Type Parameters
Name Description
TKey

Type of the primary key of the entity

Properties

Id

Unique identifier for this entity.

Declaration
TKey Id { get; }
Property Value
Type Description
TKey

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft