Interface IHierarchyNode<TId, TEntity>
Mixin providing the ParentRef property, referencing the parent node.
Inherited Members
Namespace: Kephas.Data.Model.Abstractions
Assembly: Kephas.Data.Model.Abstractions.dll
Syntax
public interface IHierarchyNode<TId, TEntity> : IIdentifiable<TId>, IIdentifiable where TEntity : class, IIdentifiable<TId>
Type Parameters
Name | Description |
---|---|
TId | The type of the ID. |
TEntity | The type of the entity. |
Properties
| Improve this Doc View SourceParentRef
Gets the parent reference.
Declaration
[Display(ResourceType = typeof(ModelStrings), Name = "HierarchyNode_ParentRef_Name")]
IRef<TEntity> ParentRef { get; }
Property Value
Type | Description |
---|---|
IRef<TEntity> | The parent reference. |