Click or drag to resize

UserProfileFactoryFindAllByIds Method

Find all user profiles using a list of identifiers.

Namespace:  AskiaPortalCmn
Assembly:  AskiaPortalCmn (in AskiaPortalCmn.dll) Version: 1.7.0-build068
Syntax
public static IEnumerable<IUserProfile> FindAllByIds(
	IContext context,
	IEnumerable<int> ids,
	QueryAllFilter filter = QueryAllFilter.NotDeleted
)

Parameters

context
Type: AskiaPortalCmnIContext
Context of execution
ids
Type: System.Collections.GenericIEnumerableInt32
Ids of the user profile to find
filter (Optional)
Type: AskiaPortalCmn.CommonQueryAllFilter
Filter to apply on query.

Return Value

Type: IEnumerableIUserProfile
Return an object to iterate through the list of user profiles.
Examples

Find all user profiles using a list of identifiers.

var context = ContextFactory.CreateByUserGuid(Guid.Parse("20BE5F84-F006-49A0-9674-4B16A090AF2D"));   
var contextValidation = context.Validate();
if (!contextValidation.Success)
{
    throw contextValidation.Exception;
}

var profiles = UserProfileFactory.FindAllByIds(context, new List<int> {2, 3, 4});
foreach(IUserProfile profile in profiles)
{
    Console.WriteLine($"User Profile Id={profile.Id}: {profile.Name}");
}
See Also