Click or drag to resize

Entity Class

Represents an entity from a model configuration. An entity relates to an SQL database.
Inheritance Hierarchy
SystemObject
  Colygon.MatchPoint.EntityModel.ConfigurationEntity

Namespace:  Colygon.MatchPoint.EntityModel.Configuration
Assembly:  Colygon.MatchPoint (in Colygon.MatchPoint.dll) Version: 2019.2.1.0
Syntax
C#
[SerializableAttribute]
public class Entity : IKnownNames, IResultRecord

The Entity type exposes the following members.

Constructors
  NameDescription
Public methodEntity
Initializes a new instance of the Entity class
Top
Properties
  NameDescription
Public propertyItem
Public propertyNames
Returns the names of all relations within this entity.
Public propertyRows
Returns the rows of the entity.
Top
Methods
  NameDescription
Public methodDeleteRecord
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetDisplayFormUrl
Public methodGetEditFormUrl
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetNewFormUrl
Public methodGetRecord
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetUpdatable
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString (Overrides ObjectToString.)
Top
Fields
  NameDescription
Public fieldAliases
Public fieldFields
Contains fields that are displayed on the Web Part.
Public fieldForms
Contains the forms specified for this entity.
Public fieldId
Returns the internal unique ID of the entity.
Public fieldName
Specifies an alternate name for this entity. If left empty the 'TableName' will be used.
Public fieldPermissions
Contains the permissions specified for this entity.
Public fieldPrimaryKeyColumn
Specifies the name of the primary key column.
Public fieldRelations
Contains the relations specified for this entity.
Public fieldSqlDisplayNameExpression
Specifies an SQL expression that defines the display name of the entity. Table columns have to be enclosed in square brackets ('[ColumnName]') and no table prefix should be prepended. E.g.: "[FirstName] + ' ' + [LastName]". The value of the SQL expression is accessible with the SQL alias '__DisplayName'.
Public fieldTableName
Specifies the name of the table which is represented by this entity.
Top
Remarks
This is a MatchPoint configuration class.
See Also