Class NSEntityName
Carrier object for EntityName.
Syntax
Constructors
NSEntityName()
Initializes a new instance of the NSEntityName class.
Declaration
NSEntityName
Methods
GetTableDescription()
Carrier object for EntityName.
Declaration
String GetTableDescription()
Returns
Type | Description |
---|---|
String | Name to be used in GUI, preferable a resource string. |
Examples
NSEntityName thing;
String tableDescription = thing.GetTableDescription();
GetTableName()
Carrier object for EntityName.
Declaration
String GetTableName()
Returns
Type | Description |
---|---|
String | The name of the table in the database. |
Examples
NSEntityName thing;
String tableName = thing.GetTableName();
SetTableDescription(String)
Carrier object for EntityName.
Declaration
Void SetTableDescription(String tableDescription)
Parameters
Type | Name | Description |
---|---|---|
String | tableDescription | Name to be used in GUI, preferable a resource string. |
Returns
Type | Description |
---|---|
Void |
Examples
NSEntityName thing;
String tableDescription;
thing.SetTableDescription(tableDescription);
SetTableName(String)
Carrier object for EntityName.
Declaration
Void SetTableName(String tableName)
Parameters
Type | Name | Description |
---|---|---|
String | tableName | The name of the table in the database. |
Returns
Type | Description |
---|---|
Void |
Examples
NSEntityName thing;
String tableName;
thing.SetTableName(tableName);