Click or drag to resize

MapperList Class

This is a basic list mapper having no UI of its own.
Inheritance Hierarchy

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

The MapperList type exposes the following members.

Constructors
  NameDescription
Public methodMapperList
Initializes a new instance of the MapperList class
Top
Properties
  NameDescription
Protected property_cacheDataAttrs
Attributes for data caching behavior CacheDataAttrs.
(Inherited from MapperKernel.)
Protected property_cacheID
The ID for operational data cached in the DataCache.
(Inherited from MapperKernel.)
Protected property_cacheLife
The lifetime for operational data cached in the DataCache, in minutes.
(Inherited from MapperKernel.)
Protected propertyAppendPKSort
Determine whether or not to append a PK sort to the sort clause.
(Inherited from MapperKernel.)
Public propertyApplication
The platform IAppContext context object. The Application is set in the Init(String, IAppContext) method.
(Inherited from MapperKernel.)
Protected propertyApplicationAppearance
Get the application's AppAppearance property.
(Inherited from MapperKernel.)
Public propertyAttributes
MapperAttrs flags specifying various behaviour of the mapper. This is normally loaded from meta-data during Load.
(Inherited from MapperKernel.)
Protected propertyBaseCacheID
Generate the base CacheID which may be affected by CacheDataAttrs.
(Inherited from MapperKernel.)
Protected propertyBulkUpdateContext
The bulk context of the current bulk operation, null if no bulk operation is in progress.
(Inherited from MapperKernel.)
Protected propertyCacheManagerToUse
Gets the CacheManager to use if operational data caching is enabled. Returns null if caching is not enabled or no CacheManager is available.
(Inherited from MapperKernel.)
Public propertyCaption
The localized caption for the mapper. Call Exec(MapperExecCmds, Int32, Object) with the Caption command to get a caption that includes additional information including current paging and filtering for a live mapper.
(Inherited from MapperKernel.)
Protected propertyColOrderPrefName
Gets the preference name for user column ordering.
(Inherited from MapperKernel.)
Public propertyCommands
Mapper commands are used to add custom MapperCommand commands to a mapper's page. Typically commands are added to the toolbar or the More (Actions) button on the toolbar. When invoked, a MapperCommand(IMapper, EAPCommandEventArgs) event is fired on the mapper. You can add commands to the mapper programmatically, typically during the MapperBeforeLayout(IMapper, EAPEventArgs) event. Commands are also added automatically from meta-data NavTarget elements with TargetType of Command on Navigator elements configured in meta-data for use on the page, page element, or mapper.
(Inherited from MapperKernel.)
Public propertyCssClass
The Cascading Style Sheet class to use for the mapper.
(Inherited from MapperKernel.)
Public propertyCurrentPage
The 1-based current page index for the mapper. In mappers other than datasheets, the RecordsPerPage is generally one so the CurrentPage is the same as the CurrentRecord.
(Inherited from MapperKernel.)
Public propertyCurrentRecord
The 1-based index of the current record in the mapper.
(Inherited from MapperKernel.)
Public propertyDatabase
The data IDatabase used by the mapper. The data database holds the mapper's operational data.
(Inherited from MapperKernel.)
Protected propertyDataSourceType
Get the DBMSType for this mapper's data source. Normally this is the DBMSType of the mapper's DataDB, but if the mapper is using a live DataTable as its data source then DBMSType.DotNet will be returned.
(Inherited from MapperKernel.)
Public propertyDeleteLocked
Specifies whether or not the row should be allowed to be deleted for the current row only. This property is cleared by the mapper immediately prior to the RowCurrent event. An extension can then set the property to true to prevent this row from being deleted.

The mapper also supports a DeleteLockExpression property allowing the delete lock condition to be specified in meta-data. The DeleteLockExpression is a javascript expression, typically including field references, that is evaluated with each row to initialize its DeleteLocked value.

For row-level record locking, see RowLocked.

(Inherited from MapperKernel.)
Public propertyDirty
The dirty property can be read to determine if any of the mapper's fields values have been changed since being populated from the database or original datatable. The property can be cleared to clear the dirty flags on all the mapper's fields. If set true, the mapper's internal dirty flag is set, but the mapper's fields are not set dirty.
(Inherited from MapperKernel.)
Public propertyExtensions
Gets the collection of IExtension mapper extension objects for the mapper. Extensions provide both additional standard and custom functionality. Mapper extensions are the primary means by which custom functionality is added to the application.

Generally extensions used across multiple mappers derive from the MapperExtensionKernel class whereas those that are intended for use on a single mapper derive from an application-specific generated class derived from the TypedMapperExtension template class. Extensions derived from TypedMapperExtension can only be used on the intended mapper, but provide a type-safe, easier to use implementation. These are the most common type of extension in most applications. The more primitive, but flexible MapperExtensionKernel-derived extension are typically used for non-mapper specific functionality such as in the ReadableAudit extension. Virtually all platform-provided extensions are of this type.

(Inherited from MapperKernel.)
Public propertyFields
The Fields collection of IField objects which generally corresponding to columns in the underlying table or view. IField's are rich objects which can be configured in meta-data and manipulated programmatically.
(Inherited from MapperKernel.)
Public propertyFilters
The collection of MapperFilter objects used to filter the mapper queries. Filters can be specified in meta-data and manipulated programmatically. Standard datasheet filtering is handled by the MapperDatasheet object.
(Inherited from MapperKernel.)
Public propertyCode exampleFlavor
Flavor is used to include or exclude certain fields based on their IncludeFlavor and ExcludeFlavor bits. Fields that are excluded are not hidden; they are never loaded into the mapper's Fields collection. A flavor of zero indicates that all fields with any IncludeFlavor bits set will not be loaded. If a field is marked as both included and excluded for a particular Flavor then the exclude bit is favored.
(Inherited from MapperKernel.)
Protected propertyFTSVal
Gets/sets the Full-Text Search value, if any.
(Inherited from MapperKernel.)
Protected propertyGroupingField
Returns the IField currently being used to group rows in the datasheet.
(Inherited from MapperKernel.)
Protected propertyGroupPrefName
Gets the preference name for the persisted user-specific grouping.
(Inherited from MapperKernel.)
Public propertyHasMorePages
Returns true if there are additional pages beyond the current page. This should be used (possibly in conjunction with HasRecords) instead of calling RecordCount in order to manage UI paging.
(Inherited from MapperKernel.)
Public propertyHasRecords
HasRecords returns true if there are one or more records in the current mapper filter, else false. Note that using HasRecords never requires an additional database query and should therefore be used in place of RecordCount when possible.
(Inherited from MapperKernel.)
Protected propertyHasRowKey
Gets whether or not the mapper has a PK or UniqueKey. Note that if mapper has no PK/UK then we only support dynamic filters not static (snapshots).
(Inherited from MapperKernel.)
Public propertyIgnorePostback
Indicates whether postback data is being used or ignored.
(Inherited from MapperKernel.)
Protected propertyIsCaching
Gets whether or not operational data caching is enabled.
(Inherited from MapperKernel.)
Public propertyIsDesignMode
Returns true if the control is in Design mode.
(Inherited from MapperKernel.)
Protected propertyIsDetail
Gets whether or not this mapper is a detail mapper. Currently this is true only for MapperDetail implementations of the mapper.
(Inherited from MapperKernel.)
Protected propertyIsFiltering
Determines if the mapper is currently being used to filter (currently based on flavor).
(Inherited from MapperKernel.)
Protected propertyIsListView
Determines if the mapper is rendering for a list view in the UI.
(Inherited from MapperKernel.)
Protected propertyIsMobile
Gets whether or not mapper is rendering for a mobile device.
(Inherited from MapperKernel.)
Public propertyIsNew
Indicates whether or not the mapper is positioned on a new row.
(Inherited from MapperKernel.)
Protected propertyIsPageMultiElement
Gets whether or the host template a multi-element template (e.g. ConsoleTemplate) vs. a single-element template (e.g. TabbedSubformTemplate).
(Inherited from MapperKernel.)
Public propertyKey
Gets the key (ID) of the mapper. This is the meta-data's unique identifier for the mapper definition.
(Inherited from MapperKernel.)
Public propertyMode
Mapper mode specifies how the mapper is being used and controls the overall look and behaviour of the mapper.
(Inherited from MapperKernel.)
Public propertyModuleKey
The key to the module using this mapper -- typically obtained from Module. Note that this may be misleading on Console and Wizard pages. To obtain the module for the mapper itself use MapperModuleKey.
(Inherited from MapperKernel.)
Public propertyMOP
The MOP using this mapper. A MOP is a Module-Page of the form <module>!<page>.
(Inherited from MapperKernel.)
Protected propertyOptFieldPrefName
Gets the preference name to use for optional fields.
(Inherited from MapperKernel.)
Public propertyOrderBy
A SQL ORDER BY clause used as the default sort for the mapper. User sorting in a datasheet supercedes this clause.
(Inherited from MapperKernel.)
Public propertyPage
The .Net Page holding this mapper.
(Inherited from MapperKernel.)
Protected propertyPageDisplayAttrs
Get the page's PageDisplayAttrs. They should have been set in the mapper's property collection by the page.
(Inherited from MapperKernel.)
Public propertyCode examplePageInfo
The PageInfo object related to this mapper. This is a reference to the session's PageInfo object.

Note that since this is a copy of the session's PageInfo object, you should not modify this instance of the PageInfo object. If you want to modify the PageInfo object for this mapper instance only then you should clone the PageInfo object using Clone(IAppContext) and set it back on the mapper as in the example below:

Examples
PageInfo    info = mapper.PageInfo.Clone(cxt);

info.TextItems.Add("Caption", "My Caption");
mapper.PageInfo = info;
(Inherited from MapperKernel.)
Public propertyPageNm
The name of the Page using this mapper -- typically obtained from Name.
(Inherited from MapperKernel.)
Public propertyParentContext
Gets/sets the parent context for this mapper. An example of such a relationship is a mapper in the bottom pane of a subform template with its ParentContext being that of the mapper in the top pane. Normally you do not need to create the ParentContext, you just get it and it is created on-demand from the current context. Normally you would only set the context manually if the parent mapper hasn't been saved yet, but exists in memory.
(Inherited from MapperKernel.)
Protected propertyPrefNameBase
Gets the base name for user preferences that originally were stored by MOP, but now need to be stored by MOP:PageElementName when inter-pane navigation is in use (any maybe at other times, so we do it now based on whether or not hosted in a ConsoleTemplate). [3/27/13 CW]
(Inherited from MapperKernel.)
Public propertyProperties
The mapper's Properties collection. Properties can be specified in meta-data using the mapper's property sheet, or programmatically. Properties are used to specify many aspects of mapper appearance and behaviour.
(Inherited from MapperKernel.)
Public propertyPurpose
Purpose is used to identify the purpose to which the live mapper object is currently being put. Note that Purpose can be set to custom values by an application depending on how the mapper is being used, but constants for a standard set of purposes can be found in MapperPurposes.
(Inherited from MapperKernel.)
Protected propertyQuerySQL
The explicitly set SQL or Stored Procedure call used to retrieve data for the mapper. When QuerySQL is provided, the mapper will use it instead of generating a SELECT statement based on its fields. In such a case the functionality of the mapper is extremely limited and features such as sorting and filtering are typically disabled.
(Inherited from MapperKernel.)
Public propertyRecordCount
Returns the number of records in the current filter. Note that this number is not limited by paging. For example, if on a datasheet displaying the first 10 records out of 53 records matching the filter, RecordCount will return 53. Note that calling RecordCount may require an additional database query and should be avoided when possible. If the intent is to determine if there are zero vs. one or more records use HasRecords instead which never requires an additional query. Note that you can use RecordCountSafe to obtain the record count without the possibility of an error being thrown.
(Inherited from MapperKernel.)
Public propertyRecordsPerPage
The number of records per page in the mapper. In mappers other than datasheets this is generally 1.
(Inherited from MapperKernel.)
Public propertyRepository
The repository IDatabase used by the mapper. The repository holds the mapper's meta-data.
(Inherited from MapperKernel.)
Protected propertyRollupGrouperField
Gets the roll-up grouping field when roll-up grouping is in effect. Returns null when not in effect.
(Inherited from MapperKernel.)
Protected propertyRowCountKnowable
Determines if the mapper can determine the total number of rows in the current filter.
(Inherited from MapperKernel.)
Public propertyRowKey
A key uniquely identifying the current row. In the case of multiple keys, this will be a combined key. This key can be passed to RowKeyFilter(String) to generate a filter for the record from which the key was obtained.
(Inherited from MapperKernel.)
Public propertyRowLocked
Specifies whether or not the row should be locked for the current row only. This property is cleared by the mapper immediately prior to the RowCurrent event. An extension can then set the property to true to lock this row only. To perform row locking on some, but not all, the fields in a row, set the RowLocked property for the appropriate fields instead of the mapper-level row lock, or set the mapper-level RowLocked and set the field's IgnoreRowLock property in the fields' meta-data.

Note that a field will be locked for all the static reasons (e.g. if the Locked attribute is set), or if the field is row-locked, or if the mapper is row-locked and the field's IgnoreRowLock property is not set. Note that the IgnoreRowLock property applies only to mapper-level row locking and has no impact on field-level row locking.

The mapper also supports a RowLockExpression property allowing the row lock condition to be specified in meta-data. The RowLockExpression is a javascript expression, typically including field references, that is evaluated with each row to initialize its RowLocked value.

For row-level delete locking, see DeleteLocked.

(Inherited from MapperKernel.)
Public propertyTextItems
The mapper's localized TextItem collection. For a particular instance of a mapper only the locale (language) for the current user is loaded.
(Inherited from MapperKernel.)
Protected propertyUseBootstrap
Gets whether or not to render for a Boostrap-base application.
(Inherited from MapperKernel.)
Public propertyView
The name of the mapper's underlying view or table. This is normally loaded from meta-data during IMapper.Load(). Note that the View is used in the mapper's operational query and count SELECT statements, but is not used for INSERT, UPDATE, or DELETE operations. All INSERT, UPDATE, and DELETE operations are performed against the fields' underlying tables based on each field's Table property.

Although the View is required, you can configure the mapper to used a Stored Procedure instead of the view by specifying the QuerySQL property. If the QuerySQL property is specified, the View will be ignored (but the Studio will still require it. Note that View can be overridden on a page-by-page basis using a page's PageView property.

(Inherited from MapperKernel.)
Public propertyViewState
The ViewState for the current page. Used to maintain filter and sort state across postbacks.
(Inherited from MapperKernel.)
Top
Methods
  NameDescription
Protected methodAddField
Adds a field to the Fields collection
(Inherited from MapperKernel.)
Protected methodAddMapperCommand
Used by mapper itself to add mapper commands so that we can tell if a newly added command was added by the mapper or externally.
(Inherited from MapperKernel.)
Protected methodApplyViewState
Called when the MapperExecCmd.ApplyViewState command is invoked.
(Inherited from MapperKernel.)
Protected methodBindElements
Called by base class when the mapper should bind its fields to their corresponding page elements. This mapper class performs no binding since it has no UI.
(Inherited from Mapper.)
Public methodBindPage(Page, Boolean)
Binds the mapper to the current .Net Page.
(Inherited from MapperKernel.)
Public methodBindPage(Page, Control, Boolean)
Binds the mapper to the current .Net Page.
(Inherited from MapperKernel.)
Public methodBindPage(Page, Control, Boolean, MapperBindFlags)
Binds the mapper to the current .Net Page.
(Inherited from MapperKernel.)
Protected methodBuildClientExpression
Build a javasript expression for the row calculation for the specified field.
(Inherited from MapperKernel.)
Protected methodBuildQueryFilter
Build the filter for the operational data query.
(Inherited from MapperKernel.)
Protected methodBuildQueryFrom
Build the FROM clause for the operational data query.
(Inherited from MapperKernel.)
Protected methodBuildTableInfo
Builds a representation of the physical table(s) underlying a mapper including the SQL for each table required to execute the specified operation.
(Inherited from MapperKernel.)
Public methodBulkDeleteBegin
Initiate a bulk delete using the mapper and fire its corresponding extension event. The object controlling the bulk operation typically makes this call before performing the delete operations in a loop using the same mapper instance. The bulkContext will be provided in the BulkContext parameter for all mapper events performed during the bulk operation. If a null bulkContext object is provided, the method will instantiate one for you. If you want a custom bulkContext, you should derive from the base EventBulkContext object and provide an instance of your derived class. If BulkDeleteBegin is called, you should call BulkDeleteEnd when the operation completes. Note that the MapperBulkBeforeDelete event is fired from within this method.
(Inherited from MapperKernel.)
Public methodBulkDeleteEnd
Complete a bulk delete operation that was initiated with a call to BulkDeleteBegin(EventBulkContext). This method will delete the mapper's internal bulk context object set by that call. This method should be called if, and only if, BulkDeleteBegin was called. Note that the MapperBulkAfterDelete event is fired from within this method.
(Inherited from MapperKernel.)
Public methodBulkInsertBegin
Initiate a bulk insert using the mapper and fire its corresponding extension event. The object controlling the bulk operation typically makes this call before performing the insert operations in a loop using the same mapper instance. The bulkContext will be provided in the BulkContext parameter for all mapper events performed during the bulk operation. If a null bulkContext object is provided, the method will instantiate one for you. If you want a custom bulkContext, you should derive from the base EventBulkContext object and provide an instance of your derived class. If BulkInsertBegin is called, you should call BulkInsertEnd when the operation completes.
(Inherited from MapperKernel.)
Public methodBulkInsertEnd
Complete a bulk insert operation that was initiated with a call to BulkInsertBegin(EventBulkContext). This method will delete the mapper's internal bulk context object set by that call. This method should be called if, and only if, BulkInsertBegin was called.
(Inherited from MapperKernel.)
Public methodBulkUpdateBegin
Initiate a bulk update using the mapper and fire its corresponding extension event. The object controlling the bulk operation typically makes this call before performing the update operations in a loop using the same mapper instance. The bulkContext will be provided in the BulkContext parameter for all mapper events performed during the bulk operation. If a null bulkContext object is provided, the method will instantiate one for you. If you want a custom bulkContext, you should derive from the base EventBulkContext object and provide an instance of your derived class. If BulkUpdateBegin is called, you should call BulkUpdateEnd when the operation completes.
(Inherited from MapperKernel.)
Public methodBulkUpdateEnd
Complete a bulk update operation that was initiated with a call to BulkUpdateBegin(EventBulkContext). This method will delete the mapper's internal bulk context object set by that call. This method should be called if, and only if, BulkUpdateBegin was called.
(Inherited from MapperKernel.)
Protected methodClearAllUserFilters
A base class method to clear all user filters on a mapper (typically going to be some kind of datsaheet)
(Inherited from MapperKernel.)
Public methodCode exampleClone(IMapper, MapperCloneFlags)
Create a clone of the mapper. Unless otherwise specified by modifier flags, the clone will be requeried using the same filters and sort as the original mapper.
(Inherited from MapperKernel.)
Public methodClone(IMapper, MapperCloneFlags, Flavors)
Create a clone of the mapper. Unless otherwise specified by modifier flags, the clone will be requeried using the same filters and sort as the original mapper.
(Inherited from MapperKernel.)
Public methodClose
Closes all internal resources
(Inherited from MapperKernel.)
Protected methodCreateBndLkup
Creates a new control implementing the IBndLkup interface. Currently the determination of which control to use is based on whether or not the application is Bootstrap based.
(Inherited from MapperKernel.)
Protected methodCreateField
Creates a new field object.
(Inherited from MapperKernel.)
Protected methodCurrentGrouping
Gets the current grouping sort clause. Typically this is a field key name optionally followed by " DESC" when descending sort is in use.
(Inherited from MapperKernel.)
Protected methodDataChanged
A change to the underlying data has occurred and the mapper should requery accordingly. Currently this provides a mechanism to tell the datasheet not to use its posted-back operational data and to requery instead. Note that MapperAfterLayout is the earliest event for which this has effect in the current datasheet life-cycle.
(Inherited from MapperKernel.)
Protected methodDefaultGrouping
Gets the default grouping.
(Inherited from MapperKernel.)
Protected methodDefaultSortClause
Get any DefaultSort and preprocess appropriately (e.g. apply picklists).
(Inherited from MapperKernel.)
Public methodDelete
Delete the current record. Note that, following the delete and all associated mapper events, the mapper will perform a MoveNext to position to the next record in the filter. Because of this, when deleting multiple records you should not perform a MoveNext except on those rows you do not intend to delete. See also DeleteAll to delete all records in the filter.
(Inherited from MapperKernel.)
Public methodDeleteAll
Delete all records in the current filter. DeleteAll is a bulk operation and as such will fire the MapperBulkBeforeDelete and MapperBulkAfterDelete events. Typically at the start of DeleteAll processing an EventBulkContext is established, however, you may establish a custom bulk context by calling BulkDeleteBegin(EventBulkContext) immediately prior to calling DeleteAll.
(Inherited from MapperKernel.)
Protected methodDeleteRelatedFiles
Delete the file, if any, associated with each field in this row in the mapper where the field so indicates.
(Inherited from MapperKernel.)
Protected methodDependencyOrderFields
Generate a list of dependency-ordered fields. The dependencies are based on property references to other fields.
(Inherited from MapperKernel.)
Protected methodDetermineGrouping
Determine the grouping group and group caption for this item.
(Inherited from MapperKernel.)
Public methodDispose
Close the database connection(s)
(Inherited from MapperKernel.)
Public methodDoCommand
Execute the specified command. Typically commandName is the ID of one of the MapperCommand items added to the mapper's Commands collection. To invoke a command by its Command, pass a 1 in the flags parameter.
(Inherited from MapperKernel.)
Protected methodDupeCheck
Throws an error if saving this record would create a duplicate record as defined by those fields marked with the DupeCheck attribute.
(Inherited from MapperKernel.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodEscapeExpression
Excape expressions to prevent possible field reference evaluation. Currently the only escaping performed is to replace all square brackets ("[") with double square brackets. Resolving an escaped expression will yield the original expression.
(Inherited from MapperKernel.)
Public methodExec(MapperExecCmds, Enum, Object)
The Exec method provide extended functionality for mappers. See MapperExecCmds for the enumerated list of commands.
(Inherited from MapperKernel.)
Public methodCode exampleExec(MapperExecCmds, Int32, Object)
The Exec method provide extended functionality for mappers. See MapperExecCmds for the enumerated list of commands.
(Inherited from MapperKernel.)
Protected methodExtractSchemaInfo
Extracts the data types from the query and set on the fields.
(Inherited from MapperKernel.)
Protected methodFieldBehaviorOpts
Get the behaviour options for the specified field.
(Inherited from MapperKernel.)
Protected methodFieldLabel
Obtain the appropriate label text for the specified field.
(Inherited from MapperKernel.)
Public methodFieldLog
Devlog a field-specific entry using caller as source with mapper and field identified.
(Inherited from MapperKernel.)
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.)
Protected methodFireEvent(ExtensionEvents)
Fire a mapper extension event with empty parameters.
(Inherited from MapperKernel.)
Protected methodFireEvent(ExtensionEvents, EAPEventArgs)
Fire a mapper extension event with the specified event arguments.
(Inherited from MapperKernel.)
Public methodFireEvent(Enum, ExtensionEvents, Object, EAPEventArgs, Int32, Object)
See IMapper.FireEvent.
(Inherited from MapperKernel.)
Protected methodFireFieldEvent(ExtensionEvents, IField)
Fire a field extension event for the specified field.
(Inherited from MapperKernel.)
Protected methodFireFieldEvent(ExtensionEvents, IField, EAPEventArgs)
Fire a field extension event for the specified field.
(Inherited from MapperKernel.)
Protected methodFireRowCurrentEvent
Fire the ExtensionEvents.RowCurrent event. Immediately prior to the event being fired the mapper's DeleteLocked property is cleared and RowLocked property is cleared as are those of all the mapper's fields.
(Inherited from MapperKernel.)
Protected methodGenDataRow
Generate javascript for DataRow object used to access mapper values, by field key, on the client.
(Inherited from MapperKernel.)
Protected methodGetCaption
Gets the mapper's "caption" property per flags. The result is exposed via IMapper.Exec(MapperExecCmds.Caption). Note that GetCaption() is normally overridden by derived classes to render a caption appropriate for the type of mapper.
(Inherited from MapperKernel.)
Protected methodGetCascadedText(String, String)
Get the specified localized text for this page. Obtaining the text is a cascading process from most specific to least specific always using the IDS as the id: 1) Look for the text item in the PageInfo's TextItems collection, 2) If not found, look for the text item in the mapper's TextItems collection, 3) If not found, look for the item in the locale resource file, 4) If not found, use the provided defaultText. Note that the text is resolved for field expressions. To avoid this or for additional options, use, GetCascadedText(String, String, CascadedTextOptions).
(Inherited from MapperKernel.)
Protected methodGetCascadedText(String, String, CascadedTextOptions)
Get the specified localized text for this page. Obtaining the text is a cascading process from most specific to least specific always using the IDS as the id: 1) Look for the text item in the PageInfo's TextItems collection, 2) If not found, look for the text item in the mapper's TextItems collection, 3) If not found, look for the item in the locale resource file, 4) If not found, use the provided defaultText.
(Inherited from MapperKernel.)
Protected methodGetCascadedText(String, String, CascadedTextOptions, IField)
Get the specified localized text for this page. Obtaining the text is a cascading process from most specific to least specific always using the IDS as the id: 1) Look for the text item in the field's TextItems collection (if provided), 2) If not found, look for the text item in the PageInfo's TextItems collection, 3) If not found, look for the text item in the mapper's TextItems collection, 4) If not found, look for the item in the application's TextItems collection, 5) If not found, look for the item in the locale resource file, 6) If not found, use the provided defaultText.
(Inherited from MapperKernel.)
Protected methodGetDescription
Gets the mapper's "description" property and resolves it for field expressions. The result is exposed via IMapper.Exec(MapperExecCmds.Description).
(Inherited from MapperKernel.)
Public methodGetFieldList
Gets a semi-colon separated list of fields to render for this mapper based on various PageElementInfo properties including FieldList, FieldListMobile, and GroupList, or on a value set programmatically via SetFieldList(String, SetFieldListOpts). Also handles the HiddenFields property when HiddenFields is specified. Note that the possibililty of HiddenFields complicates construction of a field list and typically requires calling this method first to get a possible list of explicitly shown fields (where no such list means to show all fields normally visible in the mapper) then calling the method again to get a possible list of explicitly hidden fields and combining the results (including handling the case where fields are explicitly hidden, but not explicitly shown).
(Inherited from MapperKernel.)
Protected methodGetFieldText
Get the specified localized text for the specified field. Obtaining the text is a three step process: 1) Look for the text item specified by name in the field's TextItems collection, 2) if not found, look for the item specified by ids in the locale resource file, 3) if not found, use the provided defaultText.
(Inherited from MapperKernel.)
Protected methodGetFilter
Returns the complete filter.
(Inherited from MapperKernel.)
Protected methodGetFireAndForgetCountHelper
Returns the FireAndForgetCountHelper object for a given fire and forget sql request
(Inherited from MapperKernel.)
Protected methodGetFrom
Get the mapper's FROM clause (without the word FROM).
(Inherited from MapperKernel.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Protected methodGetKeyset
Get an array of keys using the current filter.
(Inherited from MapperKernel.)
Protected methodGetLink
Build a URL to the current mapper per the specified flags.
(Inherited from MapperKernel.)
Protected methodGetMapperText
Get the specified localized text for this mapper. Obtaining the text is a three step process: 1) Look for the text item specified by name in the mapper's TextItems collection, 2) if not found, look for the item specified by ids in the locale resource file, 3) if not found, use the provided defaultText.
(Inherited from MapperKernel.)
Protected methodGetMissingRequiredFields
Get a list of the required fields whose values are null or blank.
(Inherited from MapperKernel.)
Protected methodGetRecordCount
Determine the number of data records with the current filter and without any TopN qualifier.
(Inherited from MapperKernel.)
Protected methodGetRecordCountSafe
Returns the RecordCount (an int) for the mapper, but catches any error that is thrown. Use this exec command instead of RecordCount if you want to guarantee that no error is thrown.
(Inherited from MapperKernel.)
Protected methodGetRowKeyFields
Get the collection of fields in the mapper that comprise the row keys.
(Inherited from MapperKernel.)
Protected methodGetSelectedKeys
Gets an ArrayList of the currently selected keys. The base implementation is appropriate for detail use where there is just a single current row. For other uses this method should be overridden.
(Overrides MapperKernelGetSelectedKeys(EAPEventArgs).)
Protected methodGetSort
Returns the Mappers sort. If there is no sort specified, a sort expression based on the primary key is returned to ensure a reliable row order.
(Inherited from MapperKernel.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodGrouperField
Get the grouper field associated with the specified field. Note that this is overridden in MapperDatasheet because grouping there is more limited.
(Inherited from MapperKernel.)
Public methodHasPermission
Determines if the mapper has the specified ObjectPermissions for the current user. If the object has no assigned permisions, the return value is true.
(Inherited from MapperKernel.)
Public methodInit(String, IAppContext)
This method initializes the mapper.
(Inherited from MapperKernel.)
Public methodInit(String, IAppContext, Page)
This method initializes the mapper.
(Inherited from MapperKernel.)
Public methodInit(String, IAppContext, Page, PageInfo)
This method initializes the mapper.
(Inherited from MapperKernel.)
Protected methodInsert
Insert a new record. Called by IMapper.Save when mapper is positioned on a new row.
(Inherited from MapperKernel.)
Protected methodInternalSetRecordCount
The internal _recordCount property should always be set using this method to ensure that associated information, specifically _recordCountError, is also set properly.
(Inherited from MapperKernel.)
Public methodIsAttrSet
Determines if a particular attribute (or any of a set of attributes) is set. Note that this is a shorthand for the expression (0 != (mapper.Attributes & attributes)) (C#) or (0 <> (mapper.Attributes Or attributes)) (VB).
(Inherited from MapperKernel.)
Protected methodIsCellAttrSet
Determines if the specified CellTypeAttribute is set. Since a CellTypeAttribute is valid only for a particular CellType (since the bits are reused for other CellTypes), we must check both the CellType and CellTypeAttributes.
(Inherited from MapperKernel.)
Public methodIsConfiguredFor
Determines if the mapper is currently configured for the specified MapperCapabilities.
(Inherited from MapperKernel.)
Protected methodIsGroupedInDatasheet
Determines whether or not the specified field is grouped inside another field when presented in a datasheet.
(Inherited from MapperKernel.)
Protected methodIsGroupingColumns
Determine if column grouping is specified for this list. Note that even if grouping is specified, it is possible that we will end up NOT adding a grouper header due to various factors (e.g. user having hidden all grouped cells).
(Inherited from MapperKernel.)
Protected methodIsRequestAction
Determines whether or not the mapper is currently performing the specified HttpRequest action, else false. This is generally based on the event target (__EVENTTARGET) from the request. Note that most of these actions really apply only to the MapperDatasheet.
(Inherited from MapperKernel.)
Protected methodIsUserHidden
Determine if the specified field that should be hidden due to user preferences.
(Inherited from MapperKernel.)
Protected methodLayout
Lay out the mapper UI. Note that this mapper class does not implement a UI.
(Inherited from Mapper.)
Protected methodLayoutOnPost
Specifies whether mapper should be layed out on a post-back.
(Inherited from Mapper.)
Public methodLoad
Loads the mapper's meta-data from the RepositoryIDatabase. Use Load(MapperLoadFlags) to load the mapper with specific load options.
(Inherited from MapperKernel.)
Public methodLoad(MapperLoadFlags)
Loads the mapper's meta-data from the RepositoryIDatabase.
(Inherited from MapperKernel.)
Public methodLoad(DataTable, MapperLoadFlags)
Sets up the mapper's meta-data per the table's schema. If so specified the mapper will use the table's data.
(Inherited from MapperKernel.)
Protected methodLogFieldCounts
Register debug info about field counts including total, omitted, hidden.
(Inherited from MapperKernel.)
Protected methodMapperLog(String, String, Exception)
Devlog an exception using caller as source with mapper identified.
(Inherited from MapperKernel.)
Protected methodMapperLog(String, String, String, LogMessageLevel, LogCategory)
Devlog an entry using caller as source with mapper identified.
(Inherited from MapperKernel.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodMergeSort
Merge two sort clauses. SQL-Server will error if the same column is used more than once in an ORDER BY clause. If that happens on a saved sort there's no way to recover without clearing user preferences. This method will throw out any repeated columns.
(Inherited from MapperKernel.)
Public methodMoveBOF
Move to the Beginning Of File (BOF). That is, position the cursor just prior to the first record in the mapper. Note that this will throw an InvalidMapperMovement error if the mapper is positioned on or beyond the first record and is not BiDirectional. Use MoveFirst to position directly to the first data row.
(Inherited from MapperKernel.)
Public methodMoveFirst
Move to the first record in the mapper. Note that this will throw an InvalidMapperMovement error if the mapper is positioned beyond the first record and is not BiDirectional. Use MoveBOF to position just prior to the first data row.

You should not call MoveFirst prior to calling MoveNext to loop through records in a mapper as this will result in the first record being skipped (unless of course you want to skip the first record). Immediately following a Requery(RequeryHints) the mapper will already be positioned BOF and you can simply loop by calling MoveNext. If you are using a BiDirectional mapper and need to perform subsequent MoveNext loops, call MoveBOF to position just prior to the first data row before starting each subsequent MoveNext.

(Inherited from MapperKernel.)
Public methodMoveLast
Move to the last record in the mapper.
(Inherited from MapperKernel.)
Public methodMoveNew
Move to a new record.
(Inherited from MapperKernel.)
Public methodMoveNew(Boolean)
Move to a new record.
(Inherited from MapperKernel.)
Public methodMoveNext
Move to the next record in the mapper.

You should not call MoveFirst prior to calling MoveNext to loop through records in a mapper as this will result in the first record being skipped (unless of course you want to skip the first record). Immediately following a Requery(RequeryHints) the mapper will already be positioned BOF and you can simply loop by calling MoveNext. If you are using a BiDirectional mapper and need to perform subsequent MoveNext loops, call MoveBOF to position just prior to the first data row before starting each subsequent MoveNext.

(Inherited from MapperKernel.)
Public methodMovePrev
Move to the previous record in the mapper. Note that this will throw an InvalidMapperMovement error if the mapper is not BiDirectional.
(Inherited from MapperKernel.)
Public methodMoveRelative(Int32, Boolean)
Move to a record relative to the current record. Note that this will throw an InvalidMapperMovement error if movement is negative and the mapper is not BiDirectional.
(Inherited from MapperKernel.)
Public methodMoveRelative(Int32, Boolean, MoveReason)
Move to a record relative to the current record. Note that this will throw an InvalidMapperMovement error if movement is negative and the mapper is not BiDirectional.
(Inherited from MapperKernel.)
Public methodCode exampleMoveTo(Int32)
Move to the specified row number (1-based). Note that RowCurrent events are NOT fired and data is NOT moved through the mapper's Fields during the move. In general you should use this method to position the mapper to the record immeditately PRIOR to the first record of interest and then use MoveNext to iterate through one or more records of interest.
Remarks
Note that this will throw an InvalidMapperMovement exception if the mapper is positioned beyond the specified record and is not BiDirectional.
Examples
For example, to implement a page size of 10 records and read data for the 2nd page, you would first call mapper.MoveTo(10); to position to the 10th row (the last row of page 1) then iteratively call mapper.MoveNext(); until you have read 10 records (11 through 20) or until mapper.MoveNext();MoveNext() returns false indicating that there are no more records.
(Inherited from MapperKernel.)
Public methodMoveTo(String)
Move to the row corresponding to the specified RowKey.
(Inherited from MapperKernel.)
Protected methodOpenOperationalData
Open's the operational data by executing the SELECT statment against the underlying data source.
(Inherited from MapperKernel.)
Protected methodPerformExpressionModification
Modify a resolved expression per the specified expression attributes.
(Inherited from MapperKernel.)
Public methodPermissions
Gets the ObjectPermissions for the mapper.
(Inherited from MapperKernel.)
Protected methodPicklistRefresh
Refresh appropriate picklists used by fields in this mapper. Currently that means picklists marked "volatile". And, for each picklist flushed, remove it from session cache (if cached) and have CloneParent flush as well.
(Inherited from MapperKernel.)
Protected methodPopulateDefaultsFromParent
Populate the mapper's fields' default values with values from a parent mapper, if any.
(Inherited from MapperKernel.)
Protected methodPopulateFields
Populate field values from the mapper's internal EOFReader.
(Inherited from MapperKernel.)
Protected methodPopulateFromDefaults
Populate the mapper's field values from their defaults.
(Inherited from MapperKernel.)
Protected methodPopulateFromPage
Called by base class when the mapper should populate its field values from the bound controls on the page. Since this mapper class has no UI, it does not populate from page.
(Inherited from Mapper.)
Protected methodPopulateFromSource
Called by base class when the mapper should populate its field values from the operational query.
(Inherited from Mapper.)
Protected methodPostRequery
Called immediately following OpenOperationalData() to allow a derived type to perform post-requery handling. The MapperKernel::PostRequery() has an empty implementation. Note that if PreRequery() is called, PostRequery() is called even if PreRequery() returns false such that OpenOperationalData() was not called.
(Inherited from MapperKernel.)
Protected methodPreRequery
Called immediately before OpenOperationalData() to allow a derived type to perform pre-requery handling. The MapperKernel::PreRequery() has an empty implementation.
(Inherited from MapperKernel.)
Protected methodQueryAggregateData
Query for mapper aggregate data.
(Inherited from MapperKernel.)
Protected methodQueryOperationalData
Query the operational data for the mapper.
(Inherited from MapperKernel.)
Protected methodRegisterMapperLog
Register DevLog information for logging if and only if the mapper's operational query fails.
(Inherited from MapperKernel.)
Public methodRequery
Opens the operational data reader, or fills the internal DataTable, for the mapper.
(Inherited from MapperKernel.)
Protected methodResolveExpression
Resolve an expression containing field references.
(Inherited from MapperKernel.)
Public methodResolveSortSpec
Resolve a !Sort() expression into its constituent parts.
(Inherited from MapperKernel.)
Protected methodReuseGridData
This implementation of the method should never be called. The virtual method is provided here for implementation in MapperDatasheet.
(Inherited from MapperKernel.)
Public methodRowDigest
Generate a digest of the field values in the mapper for the current row.
(Inherited from MapperKernel.)
Public methodRowKeyFilter
RowKeyFilter is used to build a filter unique for a RowKey obtained from the RowKey property.
(Inherited from MapperKernel.)
Protected methodRowRequery
Requeries the current row following a save in order to pick up any trigger or calculated column changes.
(Inherited from MapperKernel.)
Public methodSave
Save the current changes. If no fields are Dirty, no save is performed. You can use the Save(MapperSaveOptions) to override certain standard Save behaviour, the standard behaviour is typically recommended. See Save(MapperSaveOptions) for some additional information about mapper saves.
(Inherited from MapperKernel.)
Public methodSave(MapperSaveOptions)
Save the current changes allowing for specific MapperSaveOptions options. If no fields are Dirty, no save is performed. Saves are typically performed using the Save method with default mapper Save behaviour.
(Inherited from MapperKernel.)
Protected methodSavedFilterApply(String, FilterFlags, SavedFilterApplyOptions)
Apply the specified SavedFilter to the mapper including any full-text search value.
(Inherited from MapperKernel.)
Protected methodSavedFilterApply(SavedFilter, FilterFlags, SavedFilterApplyOptions)
Apply a SavedFilter to the mapper including any full-text search value.
(Inherited from MapperKernel.)
Protected methodSaveFilter(String, FilterAttributes, SaveFilterOptions)
Save off a NetQuarry.SavedFilter for this mapper capturing its current filter and sort state.
(Inherited from MapperKernel.)
Protected methodSaveFilter(String, String, FilterAttributes, SaveFilterOptions)
Save off a NetQuarry.SavedFilter for this mapper capturing its current filter and sort state.
(Inherited from MapperKernel.)
Public methodSelectedKeys
SelectedKeys is used to obtain a list of the RowKeys for the rows currently selected in the mapper. In a detail this is the current row. In a datasheet this is the set of selected rows.
(Inherited from MapperKernel.)
Public methodSelectedKeys(EAPEventArgs)
SelectedKeys is used to obtain a list of the RowKeys for the rows currently selected in the mapper. In a detail this is the current row. In a datasheet this is the set of selected rows. If an EAPEventArgs object is provided from a particular mapper event that can specify one or more RowKeys, e.g. EAPCommandEventArgs.RowKey and one or more RowKeys are specified in that object, then the RowKey(s) from the event will be returned.
(Inherited from MapperKernel.)
Public methodSend(String, String)
Simple way to send a message using this mapper and a template. The mapper sets up the message, the relationships, and creates the template data appropriate from the current row before sending.
(Inherited from MapperKernel.)
Public methodSend(String, String, NameValueCollection)
Simple way to send a message using this mapper and a template. The mapper sets up the message, the relationships, and creates the template data appropriate from the current row before sending.
(Inherited from MapperKernel.)
Public methodSend(String, String, NameValueCollection, MessageRelationships)
Simple way to send a message using this mapper and a template. The mapper sets up the message, the relationships, and creates the template data appropriate from the current row before sending.
(Inherited from MapperKernel.)
Protected methodSetDataSource
Set the mapper's data source.
(Inherited from MapperKernel.)
Public methodSetFieldList
Sets the semi-colon separated list of fields to render for this mapper. Setting this value programmatically overrides any meta-data specified list. See GetFieldList(GetFieldListOpts).
(Inherited from MapperKernel.)
Protected methodSetupClientExpressions
Generates the RowCalc() javascript for the mapper.
(Inherited from MapperKernel.)
Protected methodSetUpFromPageInfo
Set up this mapper from a PageInfo object.
(Inherited from MapperKernel.)
Protected methodSetValuesFromForm
Set the mapper's field values from the current post.
(Inherited from MapperKernel.)
Public methodSignature
Generates a signature string for the mapper as currently filtered and sorted.
(Inherited from MapperKernel.)
Protected methodSortSpec
Extract the parts of a SortSpec from a SortSpec.
(Inherited from MapperKernel.)
Protected methodSortSpecFieldKey
Get the field key from a SortSpec.
(Inherited from MapperKernel.)
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Protected methodTryGetRowKeys
Try to get one or more RowKeys specifically identified in mapper event args.
(Inherited from MapperKernel.)
Protected methodUpdate
Update the current record. Called by IMapper.Save when mapper is positioned on an existing row.
(Inherited from MapperKernel.)
Protected methodUserCanFilter
Determine whether or not this mapper supports user filtering. Currently the only support for this is the Filter-by-Form (FBF) on the datasheet.
(Inherited from MapperKernel.)
Protected methodUserOrderedFieldList
Retrieves the list of mapper field keys in the order they should be presented to the user in a datasheet taking any user-customized column order into account. Unless a explicit ColOrder property is specified on the mapper, first are fields marked with FreezeColumn the are fields explicitly ordered by the user and then all other fields. Note that field visibility is NOT taken into account and, in fact, the list may include keys for which no field is defined. The list is guaranteed to not include duplicates.
(Inherited from MapperKernel.)
Top
Fields
  NameDescription
Protected field_appAppearance
The application appearance flags from the application context.
(Inherited from MapperKernel.)
Protected field_appContext
The current application context.
(Inherited from MapperKernel.)
Protected field_attributes
Attributes describing mapper behaviour.
(Inherited from MapperKernel.)
Protected field_cacheManagerParams
Parameters to manage data caching behavior CacheManagerParams.
(Inherited from MapperKernel.)
Protected field_cssClass
The CSS class name to use for mapper fields.
(Inherited from MapperKernel.)
Protected field_ctrlParent
The parent control to the mapper's bound fields.
(Inherited from MapperKernel.)
Protected field_currentPage
The (1-based) page to which the mapper is current positioned.
(Inherited from MapperKernel.)
Protected field_data
The operational data when such is provided programmatically instead of obtained through the normal mapper querying facilities.
(Inherited from MapperKernel.)
Protected field_databaseExplicitlySet
Identifies whether or not the database was explicitly set.
(Inherited from MapperKernel.)
Protected field_dataSourceKey
The key to the DataSource to use.
(Inherited from MapperKernel.)
Protected field_dbData
The operational data data source for the mapper.
(Inherited from MapperKernel.)
Protected field_dbRepos
The repository (meta-data) data source for the mapper.
(Inherited from MapperKernel.)
Protected field_defaultTargetFrame
The default frame for navigation links.
(Inherited from MapperKernel.)
Protected field_exts
The mapper's collection of extension components.
(Inherited from MapperKernel.)
Protected field_fields
The mapper's collection of IField objects.
(Inherited from MapperKernel.)
Protected field_filters
The mapper's collection of mapper filters.
(Inherited from MapperKernel.)
Protected field_flavor
The Flavor for which this mapper should render.
(Inherited from MapperKernel.)
Protected field_hostPane
The IWizContainerPane or IConsolePane hosting this mapper, if so hosted.
(Inherited from MapperKernel.)
Protected field_initialSelectedKeys
The optional set of initially selected RowKeys currently used for the initial state of the Datasheet row selector checkboxes.
(Inherited from MapperKernel.)
Protected field_isHtml5
True if the AppAppearance.Html5DocType attribute is set on the application
(Inherited from MapperKernel.)
Protected field_isPostBack
Specifies whether or not this page should be considered a postback.
(Inherited from MapperKernel.)
Protected field_key
The unique identifier for the mapper (IMapper.Key).
(Inherited from MapperKernel.)
Protected field_lastCountFilter
The last SQL query used to determine the mapper record count.
(Inherited from MapperKernel.)
Protected field_lastPseudoSQL
The last main query SQL statement executed. This is used internally to determine if the query SQL has changed since the last query.
(Inherited from MapperKernel.)
Protected field_lastQueryFilter
The last SQL query used to filter the mapper.
(Inherited from MapperKernel.)
Protected field_mapperModuleKey
The module for the mapper (from xmt_datamappers.module_key) vs. _moduleKey which is obtained from the MOP.
(Inherited from MapperKernel.)
Protected field_mode
Mapper mode specifies how the mapper is being used and controls the overall look and behaviour of the mapper.
(Inherited from MapperKernel.)
Protected field_moduleKey
The module key, generally used in conjunction with the page name to form a MOP (module!page).
(Inherited from MapperKernel.)
Protected field_moveReason
The reason for the current/last Move call.
(Inherited from MapperKernel.)
Protected field_navTarget
The NavTarget context under which the mapper is rendering.
(Inherited from MapperKernel.)
Protected field_new
Identifies whether the mapper is positioned on a new row.
(Inherited from MapperKernel.)
Protected field_page
The .Net Page object on which this mapper is rendering. May be null.
(Inherited from MapperKernel.)
Protected field_pageInfo
The NetQuarry PageInfo object describing the page on which this mapper is rendering. May be null.
(Inherited from MapperKernel.)
Protected field_pageName
The platform page name, generally used in conjunction with the module to form a MOP (module!page).
(Inherited from MapperKernel.)
Protected field_pageNumber
Used by the datasheet to control paging
(Inherited from MapperKernel.)
Protected field_pei
The page element associated with this mapper. May be null.
(Inherited from MapperKernel.)
Protected field_processing
The current processing being performed by the mapper.
(Inherited from MapperKernel.)
Protected field_props
The mapper's collection of properties.
(Inherited from MapperKernel.)
Protected field_purpose
The current purpose for this mapper instance.
(Inherited from MapperKernel.)
Protected field_recordCount
The number of records in the mapper per the current filter.
(Inherited from MapperKernel.)
Protected field_recsPerPage
The number of records per page.
(Inherited from MapperKernel.)
Protected field_requeryHints
Hints provided to Requery.
(Inherited from MapperKernel.)
Protected field_revealText
Specifies whether or not to render in RevealText mode to show developer the source of customizeable text.
(Inherited from MapperKernel.)
Protected field_sort
The mapper's current SQL sort clause.
(Inherited from MapperKernel.)
Protected field_sqlRowNumPaging
Used by the datasheet to control paging
(Inherited from MapperKernel.)
Protected field_state
The internal state of the mapper.
(Inherited from MapperKernel.)
Protected field_textItems
The mapper's collection of localized text.
(Inherited from MapperKernel.)
Protected field_topN
The number of records to retrieve in the database query (for efficiency). This is typically one more than the last record of interest given the current paging. We get one extra record in order to determine if more pages are available.
(Inherited from MapperKernel.)
Protected field_viewName
The name of the mapper's underlying table or view.
(Inherited from MapperKernel.)
Protected field_viewState
The page's ViewState.
(Inherited from MapperKernel.)
Public fieldERROR_FIELD_VALUE
Field value error prefix for internal use only.
(Inherited from MapperKernel.)
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
See Also