Class EntityObject
Represents Entity Object.
Inheritance
System.Object
EntityObject
Namespace: Mediachase.BusinessFoundation.Data.Business
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 14.26.0Syntax
public class EntityObject : Object
Constructors
EntityObject()
Initializes a new instance of the EntityObject class.
Declaration
public EntityObject()
EntityObject(String)
Initializes a new instance of the EntityObject class.
Declaration
public EntityObject(string metaClassName)
Parameters
Type | Name | Description |
---|---|---|
System.String | metaClassName | Name of the meta class. |
EntityObject(String, PrimaryKeyId)
Initializes a new instance of the EntityObject class.
Declaration
public EntityObject(string metaClassName, PrimaryKeyId primaryKeyId)
Parameters
Type | Name | Description |
---|---|---|
System.String | metaClassName | Name of the meta class. |
PrimaryKeyId | primaryKeyId | The primary key id. |
Properties
Item[String]
Gets or sets the System.Object with the specified name.
Declaration
public object this[string name] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Property Value
Type | Description |
---|---|
System.Object |
MetaClassName
Gets or sets the name of the meta class.
Declaration
public string MetaClassName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the meta class. |
PrimaryKeyId
Gets or sets the primary key id.
Declaration
public Nullable<PrimaryKeyId> PrimaryKeyId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<PrimaryKeyId> | The primary key id. |
Properties
Gets or sets the properties.
Declaration
public EntityObjectPropertyCollection Properties { get; set; }
Property Value
Type | Description |
---|---|
EntityObjectPropertyCollection | The properties. |