CodeGarten.Data.Access.RuleManager.GetAll C# (CSharp) Méthode

GetAll() public méthode

public GetAll ( long structureId ) : IQueryable
structureId long
Résultat IQueryable
        public IQueryable<Rule> GetAll(long structureId)
        {
            return _dbManager.DbContext.Rules.Where(r => r.StructureId == structureId);
        }