Performs a search by example using the item parameter.
Property values of the item parameter are used to construct the necessary search query.
Namespace: SimpleMode.SecureLicenseManager.DataAssembly: SimpleMode.SecureLicenseManager.Data (in SimpleMode.SecureLicenseManager.Data.dll) Version: 1.5.5120.0 (1.5.5120.0)
Syntax
C# |
---|
public List<T> Find<T>(
T item,
int skipCount,
int itemCount
)
|
Visual Basic |
---|
Public Function Find(Of T) ( _
item As T, _
skipCount As Integer, _
itemCount As Integer _
) As List(Of T) |
Visual C++ |
---|
public:
generic<typename T>
virtual List<T>^ Find(
T item,
int skipCount,
int itemCount
) sealed |
Parameters
- item
- Type: T
An instance of type T that will be used to construct the search query.
- skipCount
- Type: System..::..Int32
The number of entities to skip before starting to add entities into the list.
- itemCount
- Type: System..::..Int32
The maximum number of entities to add into the list.
Type Parameters
Return Value
List of items that match the property values specified in the item parameter.
See Also