Retrieves all users that has "userData" string as a part of the username, first name or last name.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual EntityCollection<AspnetUsersEntity> GetUsers(
	string userData,
	bool useFullTextIndex,
	Guid applicationId,
	bool fullPrefetchPath,
	int pageNumber,
	int pageSize,
	out int recordCount
)
Visual Basic
Public Overridable Function GetUsers ( 
	userData As String,
	useFullTextIndex As Boolean,
	applicationId As Guid,
	fullPrefetchPath As Boolean,
	pageNumber As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of AspnetUsersEntity)
Visual C++
public:
virtual EntityCollection<AspnetUsersEntity^>^ GetUsers(
	String^ userData, 
	bool useFullTextIndex, 
	Guid applicationId, 
	bool fullPrefetchPath, 
	int pageNumber, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
abstract GetUsers : 
        userData : string * 
        useFullTextIndex : bool * 
        applicationId : Guid * 
        fullPrefetchPath : bool * 
        pageNumber : int * 
        pageSize : int * 
        recordCount : int byref -> EntityCollection<AspnetUsersEntity> 
override GetUsers : 
        userData : string * 
        useFullTextIndex : bool * 
        applicationId : Guid * 
        fullPrefetchPath : bool * 
        pageNumber : int * 
        pageSize : int * 
        recordCount : int byref -> EntityCollection<AspnetUsersEntity> 

Parameters

userData
Type: System..::..String
String to be searched for in username, first name, last name
useFullTextIndex
Type: System..::..Boolean
Indicates if full text search is to be used.
applicationId
Type: System..::..Guid
Application Id
fullPrefetchPath
Type: System..::..Boolean
Include full prefetch path
pageNumber
Type: System..::..Int32
Page number
pageSize
Type: System..::..Int32
Page size
recordCount
Type: System..::..Int32%
Number of records retrieved

Return Value

Type: EntityCollection<(Of <(<'AspnetUsersEntity>)>)>
Entity collection with all user entities that satisfy the search condition

Implements

IUserBLL..::..GetUsers(String, Boolean, Guid, Boolean, Int32, Int32, Int32%)

See Also