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

GetAll() public méthode

public GetAll ( long structureId ) : IQueryable
structureId long
Résultat IQueryable
        public IQueryable<WorkSpaceType> GetAll(long structureId)
        {
            return _dbManager.DbContext.WorkSpaceTypes.Where(wst => wst.StructureId == structureId);
        }