TableInfo Class |
Namespace: NetQuarry.Data
The TableInfo type exposes the following members.
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | (Inherited from Object.) |
Name | Description | |
---|---|---|
DeleteBehavior |
Gets or sets how this table should be affected by a mapper delete.
| |
Dirty |
Gets or Sets the dirty bit on the table.
| |
Executed |
Gets or set whether the table SQL has already been executed.
| |
FieldsToWrite |
Collection of fields to be written during this INSERT or UPDATE.
| |
IdentityField |
Gets or sets the IField that is the identity field for this table.
| |
Name |
Gets or Sets the name of the table.
| |
NonUseDefaultOnUpdateFields |
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.
| |
operation |
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.
| |
PrimaryKeyField |
Gets or sets the IField that is the primary key for this table.
| |
SQL |
Gets or sets the table's SQL statment for execution.
|
Name | Description | |
---|---|---|
EqualValue |
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.) |