Namespace: Cartella.Interfaces
Assembly: CartellaData (in CartellaData.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
IPaginatedList<T, int> GetUserCreatedItems<T>(
	string creationUserID,
	EntitySortFields orderBy,
	bool sortAscending,
	IEnumerable<string> categoryIDs,
	bool includeCategoryDescendants
)
where T : class, new(), IEntity
Visual Basic
Function GetUserCreatedItems(Of T As {Class, New, IEntity}) ( _
	creationUserID As String, _
	orderBy As EntitySortFields, _
	sortAscending As Boolean, _
	categoryIDs As IEnumerable(Of String), _
	includeCategoryDescendants As Boolean _
) As IPaginatedList(Of T, Integer)
Visual C++
generic<typename T>
where T : ref class, gcnew(), IEntity
IPaginatedList<T, int>^ GetUserCreatedItems(
	String^ creationUserID, 
	EntitySortFields orderBy, 
	bool sortAscending, 
	IEnumerable<String^>^ categoryIDs, 
	bool includeCategoryDescendants
)

Parameters

creationUserID
Type: System..::..String
orderBy
Type: EntitySortFields
sortAscending
Type: System..::..Boolean
categoryIDs
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
includeCategoryDescendants
Type: System..::..Boolean

Type Parameters

T

See Also