Affecto.IdentityManagement.Store.EntityFramework.Queries.GroupExistsQuery.GroupExistsQuery C# (CSharp) Method

GroupExistsQuery() public method

public GroupExistsQuery ( IQueryable groups ) : System
groups IQueryable
return System
        public GroupExistsQuery(IQueryable<Group> groups)
        {
            if (groups == null)
            {
                throw new ArgumentNullException("groups");
            }
            this.groups = groups;
        }