Class EntityInfo
Provides general and common information about a major entity.
Implements
Inherited Members
Namespace: Nevatech.Vsb.Repository.Entities
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class EntityInfo : IExtensibleDataObject
Constructors
EntityInfo()
Declaration
public EntityInfo()
Properties
EntityType
Gets or sets the type of the entity.
Declaration
public EntityType EntityType { get; set; }
Property Value
Type | Description |
---|---|
EntityType |
ExtensionData
Gets or sets ExtensionDataObject that enables serialization round-trips.
Declaration
public ExtensionDataObject ExtensionData { get; set; }
Property Value
Type | Description |
---|---|
ExtensionDataObject |
FolderId
Gets or sets the identifier of the folder that entity belongs to.
Declaration
public int? FolderId { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
Id
Gets or sets the database identifier of this entity.
Declaration
public int Id { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Key
Gets or sets the unique identifier of the entity.
Declaration
public Guid Key { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Name
Gets or sets the display name of the entity.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
Methods
ToString()
Returns the text representation of the object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The text representation of the object. |