RoleStore<TRole, TKey, TUserRole>.Roles Property

 

Gets an IQueryable<T> of users.

Namespace:   Microsoft.AspNet.Identity.EntityFramework
Assembly:  Microsoft.AspNet.Identity.EntityFramework (in Microsoft.AspNet.Identity.EntityFramework.dll)

Syntax

public IQueryable<TRole> Roles { get; }
public:
property IQueryable<TRole>^ Roles {
    virtual IQueryable<TRole>^ get() sealed;
}
abstract Roles : IQueryable<'TRole> with get
override Roles : IQueryable<'TRole> with get
Public ReadOnly Property Roles As IQueryable(Of TRole)

Property Value

Type: System.Linq.IQueryable<TRole>

An IQueryable<T> of users.

Implements

IQueryableRoleStore<TRole, TKey>.Roles

See Also

RoleStore<TRole, TKey, TUserRole> Class
Microsoft.AspNet.Identity.EntityFramework Namespace
ASP.NET Identity

Return to top