Get user's connections from the database projected on the view UserConnectionsTypedViewEntry

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

Syntax

C#
EntityCollection<FriendSuggestionTypedViewEntryEntity> GetUserConnectionTypedViewEntries(
	Guid userId,
	string searchTerm,
	bool isRandom,
	int numberOfLevels,
	int pageNumber,
	int pageSize,
	out int recordCount
)
Visual Basic
Function GetUserConnectionTypedViewEntries ( 
	userId As Guid,
	searchTerm As String,
	isRandom As Boolean,
	numberOfLevels As Integer,
	pageNumber As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of FriendSuggestionTypedViewEntryEntity)
Visual C++
EntityCollection<FriendSuggestionTypedViewEntryEntity^>^ GetUserConnectionTypedViewEntries(
	Guid userId, 
	String^ searchTerm, 
	bool isRandom, 
	int numberOfLevels, 
	int pageNumber, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
abstract GetUserConnectionTypedViewEntries : 
        userId : Guid * 
        searchTerm : string * 
        isRandom : bool * 
        numberOfLevels : int * 
        pageNumber : int * 
        pageSize : int * 
        recordCount : int byref -> EntityCollection<FriendSuggestionTypedViewEntryEntity> 

Parameters

userId
Type: System..::..Guid
UserId
searchTerm
Type: System..::..String
Search Term
isRandom
Type: System..::..Boolean
Show random users
numberOfLevels
Type: System..::..Int32
Number of connection levels
pageNumber
Type: System..::..Int32
Page Number
pageSize
Type: System..::..Int32
Page Size
recordCount
Type: System..::..Int32%
Record Count

Return Value

Type: EntityCollection<(Of <(<'FriendSuggestionTypedViewEntryEntity>)>)>
Collection of users

See Also