Returns a list of the most commonly user reports. Ordered by ExportCount DESC. SELECT ExportName: column value ExportCount: computed count of group by ExportName ExportTitle: friendly display title "ExportName (ExportCount)"

Namespace: Caisis.DataAccess
Assembly: Caisis.DataAccess (in Caisis.DataAccess.dll) Version: 4.0.4947.22627

Syntax

C#
public DataTable GetMostCommonlyUserReports(
	Nullable<int> topResults,
	Nullable<int> recentDays
)
Visual Basic
Public Function GetMostCommonlyUserReports ( 
	topResults As Nullable(Of Integer),
	recentDays As Nullable(Of Integer)
) As DataTable
Visual C++
public:
DataTable^ GetMostCommonlyUserReports(
	Nullable<int> topResults, 
	Nullable<int> recentDays
)

Parameters

topResults
Type: System..::..Nullable<(Of <(<'Int32>)>)>
Restrict to TOP n results.
recentDays
Type: System..::..Nullable<(Of <(<'Int32>)>)>
Restrict to past n days.

Return Value

Type: DataTable

[Missing <returns> documentation for "M:Caisis.DataAccess.UserExportDa.GetMostCommonlyUserReports(System.Nullable{System.Int32},System.Nullable{System.Int32})"]

See Also