Click or drag to resize

UserFactoryFindAllByIds Method

Find all users using a list of identifiers.

Namespace:  AskiaPortalCmn
Assembly:  AskiaPortalCmn (in AskiaPortalCmn.dll) Version: 1.7.0-build068
Syntax
public static IEnumerable<IUser> 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 users to find
filter (Optional)
Type: AskiaPortalCmn.CommonQueryAllFilter
Filter to apply on query.

Return Value

Type: IEnumerableIUser
Return an object to iterate through the list of users.
Examples

Find all users 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 users = UserFactory.FindAllByIds(context, new List<int> {2, 3, 4});
foreach(IUser user in users)
{
    Console.WriteLine($"User Id={user.Id}: {user.Name}");
}
See Also