Class AddressExtenderBase
Base class for fetching data from the Address table - no special processing at all
Inheritance
Implements
Inherited Members
Namespace: SuperOffice.CRM.ArchiveLists
Assembly: SoDataBase.dll
Syntax
public abstract class AddressExtenderBase : TableExtenderBase<AddressTableInfo>, IArchiveProviderQueryMapping, IArchiveExtender, IArchiveProviderDoesExtend, IArchiveProviderHasColumns, IArchiveProviderExtensible
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
Constructors
AddressExtenderBase()
Base class for fetching data from the Address table - no special processing at all
Declaration
protected AddressExtenderBase()
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
Fields
_colAddressId
Base class for fetching data from the Address table - no special processing at all
Declaration
protected ArchiveColumnInfo _colAddressId
Field Value
Type | Description |
---|---|
ArchiveColumnInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
_colCity
Base class for fetching data from the Address table - no special processing at all
Declaration
protected ArchiveColumnInfo _colCity
Field Value
Type | Description |
---|---|
ArchiveColumnInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
_colCounty
Base class for fetching data from the Address table - no special processing at all
Declaration
protected ArchiveColumnInfo _colCounty
Field Value
Type | Description |
---|---|
ArchiveColumnInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
_colFormattedAddress
Base class for fetching data from the Address table - no special processing at all
Declaration
protected ArchiveColumnInfo _colFormattedAddress
Field Value
Type | Description |
---|---|
ArchiveColumnInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
_colFormattedMultiLineAddress
Base class for fetching data from the Address table - no special processing at all
Declaration
protected ArchiveColumnInfo _colFormattedMultiLineAddress
Field Value
Type | Description |
---|---|
ArchiveColumnInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
_colLine1
Base class for fetching data from the Address table - no special processing at all
Declaration
protected ArchiveColumnInfo _colLine1
Field Value
Type | Description |
---|---|
ArchiveColumnInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
_colLine2
Base class for fetching data from the Address table - no special processing at all
Declaration
protected ArchiveColumnInfo _colLine2
Field Value
Type | Description |
---|---|
ArchiveColumnInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
_colLine3
Base class for fetching data from the Address table - no special processing at all
Declaration
protected ArchiveColumnInfo _colLine3
Field Value
Type | Description |
---|---|
ArchiveColumnInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
_colState
Base class for fetching data from the Address table - no special processing at all
Declaration
protected ArchiveColumnInfo _colState
Field Value
Type | Description |
---|---|
ArchiveColumnInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
_colWgsLat
Base class for fetching data from the Address table - no special processing at all
Declaration
protected ArchiveColumnInfo _colWgsLat
Field Value
Type | Description |
---|---|
ArchiveColumnInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
_colWgsLong
Base class for fetching data from the Address table - no special processing at all
Declaration
protected ArchiveColumnInfo _colWgsLong
Field Value
Type | Description |
---|---|
ArchiveColumnInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
_colZip
Base class for fetching data from the Address table - no special processing at all
Declaration
protected ArchiveColumnInfo _colZip
Field Value
Type | Description |
---|---|
ArchiveColumnInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
Properties
ParentCountryId
Subclass contract: A country ID, from the owning entity, must be provided; including its addition to the returnfields. Same pattern as for Phone.
Declaration
protected abstract FieldInfo ParentCountryId { get; }
Property Value
Type | Description |
---|---|
FieldInfo |
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
Methods
InnerModifyQuery()
Template method called from ModifyQuery() during query processing; subclasses should implement it to build their queries. It will ONLY be called if IsQueryNeeded returns true.
Declaration
protected override void InnerModifyQuery()
Overrides
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...
InnerPopulateRowFromReader(SoDataReader, ArchiveRow)
Derived classes should implement the population of ColumnData items for columns that are NOT handled by this base class in this method. Whether a column is handled by this base class is part of its database binding information, set by the various MapXXX methods.
Declaration
protected override void InnerPopulateRowFromReader(SoDataReader reader, ArchiveRow row)
Parameters
Type | Name | Description |
---|---|---|
SoDataReader | reader | Data reader with the query result (one row) |
ArchiveRow | row | archive row to be populated |
Overrides
Remarks
One possible feature would be to format Zip codes according to address format guidelines. Another one would be to provide a 'formattedAddress' column, equivalent to a multi-line label...