Class CatalogEntryChangeForODPDatabase
This type/member supports the EPiServer infrastructure and is not intended to be used directly from your code.
Reads/Writes CatalogEntryChange data for ODP.
Inheritance
System.Object
CatalogEntryChangeForODPDatabase
Namespace: EPiServer.Commerce.ODP.Internal
Assembly: EPiServer.Commerce.ODP.dll
Version: 14.26.0Syntax
public class CatalogEntryChangeForODPDatabase : Object
Constructors
CatalogEntryChangeForODPDatabase(IConnectionStringHandler)
Initializes a new instance of the CatalogEntryChangeForODPDatabase class.
Declaration
public CatalogEntryChangeForODPDatabase(IConnectionStringHandler connectionStringHandler)
Parameters
Type | Name | Description |
---|---|---|
IConnectionStringHandler | connectionStringHandler | The connection string handler. |
Methods
GetCatalogEntryChanges(DateTime, DateTime, Int32, Int32, Int32)
Gets CatalogEntryChange by batch.
Declaration
public IEnumerable<CatalogEntryChangeModel> GetCatalogEntryChanges(DateTime fromDate, DateTime toDate, int catalogId, int start, int limit)
Parameters
Type | Name | Description |
---|---|---|
System.DateTime | fromDate | The from date that entry has changed. |
System.DateTime | toDate | The to date that entry has changed. |
System.Int32 | catalogId | The catalog id. |
System.Int32 | start | The index of first item to return. |
System.Int32 | limit | The maximum count of items to return. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<CatalogEntryChangeModel> | The list of CatalogEntryChangeModel. |