Click or drag to resize

TableInfo Class

Holds information about a table.
Inheritance Hierarchy
SystemObject
  NetQuarry.DataTableInfo

Namespace:  NetQuarry.Data
Assembly:  EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public class TableInfo

The TableInfo type exposes the following members.

Constructors
  NameDescription
Public methodTableInfo
Initializes a new instance of the TableInfo class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldDeleteBehavior
Gets or sets how this table should be affected by a mapper delete.
Public fieldDirty
Gets or Sets the dirty bit on the table.
Public fieldExecuted
Gets or set whether the table SQL has already been executed.
Public fieldFieldsToWrite
Collection of fields to be written during this INSERT or UPDATE.
Public fieldIdentityField
Gets or sets the IField that is the identity field for this table.
Public fieldName
Gets or Sets the name of the table.
Public fieldNonUseDefaultOnUpdateFields
Tracks the number of files that are to be saved that are NOT marked with UseDefaultOnUpdate . This is used on updates to prevent an update that solely (across the entire update) updates fields so marked.
Public fieldoperation
The operation being performed. Typically this is the same as the overall operation being performed by the mapper. However, in the case of a mapper performing an UPDATE where one or more tables in the underlying view do not have corresponding records (presumably due to a LEFT JOIN) even though a record was found by the mapper, the operation on a particular table could be an INSERT.
Public fieldPrimaryKeyField
Gets or sets the IField that is the primary key for this table.
Public fieldSQL
Gets or sets the table's SQL statment for execution.
Top
Extension Methods
  NameDescription
Public Extension MethodEqualValue
Determines if the object value is equal to another object. If the two objects are null, then this returns true. There is special handling for guid comparisons (since a guid could be a string formatted in up to 3 different ways). If the special guid handling is not performed, then the object.Equals method is used.
(Defined by EAPUtil.)
Top
Remarks
This class is internal to NetQuarry and is not intended to be used from your code.
See Also