Class NSEntityName

Carrier object for EntityName.

Constructors

NSEntityName()

Initializes a new instance of the NSEntityName class.

Declaration

NSEntityName

Methods

GetTableDescription()

Declaration

String GetTableDescription()

Examples

NSEntityName thing;
String tableDescription = thing.GetTableDescription();

Returns

Type Description
String Name to be used in GUI, preferable a resource string.

GetTableName()

Declaration

String GetTableName()

Examples

NSEntityName thing;
String tableName = thing.GetTableName();

Returns

Type Description
String The name of the table in the database.

SetTableDescription(String)

Declaration

Void SetTableDescription(String tableDescription)

Examples

NSEntityName thing;
String tableDescription;
thing.SetTableDescription(tableDescription);

Parameters

Type Name Description
String tableDescription Name to be used in GUI, preferable a resource string.

Returns

Type Description
Void

SetTableName(String)

Declaration

Void SetTableName(String tableName)

Examples

NSEntityName thing;
String tableName;
thing.SetTableName(tableName);

Parameters

Type Name Description
String tableName The name of the table in the database.

Returns

Type Description
Void