Interface IArchiveTypedProvider<StronglyTypedRow>
Base interface for strongly typed providers, defining the methods and properties common to all such interfaces
Inherited Members
Namespace: SuperOffice.CRM.ArchiveLists
Assembly: SoDataBase.dll
Syntax
public interface IArchiveTypedProvider<StronglyTypedRow> : IArchiveTypedProviderBase, IArchiveProvider, IArchiveProviderHasRows, IArchiveProviderHasColumns, IArchiveProviderHasEntities, IPlugin where StronglyTypedRow : ArchiveRow
Type Parameters
Name | Description |
---|---|
StronglyTypedRow |
Methods
GetRows(String)
Override of the generic GetRows(String) method, in this case returning a strongly typed row instead of the generic ArchiveRow object.
Declaration
IEnumerable<StronglyTypedRow> GetRows(string options)
Parameters
Type | Name | Description |
---|---|---|
String | options |
Returns
Type | Description |
---|---|
IEnumerable<StronglyTypedRow> |
Extension Methods
EnumUtil.MapEnums<From, To>(From)