Returns an enumerable list of items filtered by scope

Namespace: DotNetNuke.Data
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
IEnumerable<T> Get<TScopeType>(
	TScopeType scopeValue
)
Visual Basic
Function Get(Of TScopeType) ( 
	scopeValue As TScopeType
) As IEnumerable(Of T)

Parameters

scopeValue
Type: TScopeType
The value of the scope to filter by

Type Parameters

TScopeType
The type of the scope field

Return Value

The list of items

Remarks

This overload should be used to get a list of items for a specific module instance or for a specific portal dependening on how the items in the repository are scoped.

See Also