London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Class DirectAccessReportingDataGenerator

For default implementation of order system, directly access database for best performance.

Inheritance
System.Object
DirectAccessReportingDataGenerator
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Commerce.Reporting.Order.Internal
Assembly: EPiServer.Commerce.Reporting.dll
Version: 13.30.0
Syntax
public class DirectAccessReportingDataGenerator : IReportingDataGenerator

Constructors

DirectAccessReportingDataGenerator()

Declaration
public DirectAccessReportingDataGenerator()

Methods

GenerateOrderReportingData(DateTime, DateTime)

Generates order reporting data.

Declaration
public IEnumerable<OrderStoreModel> GenerateOrderReportingData(DateTime fromDate, DateTime toDate)
Parameters
Type Name Description
System.DateTime fromDate

The start date to generate order reports for.

System.DateTime toDate

The end date to generate order reports for.

Returns
Type Description
System.Collections.Generic.IEnumerable<OrderStoreModel>

A collection of order reporting model.

Implements