Rock.Model.PageRouteService.GetByPageId C# (CSharp) Метод

GetByPageId() публичный Метод

Gets an enumerable list of Rock.Model.PageRoute entities that are linked to a Rock.Model.Page by the by the Page's Id.
public GetByPageId ( int pageId ) : IQueryable
pageId int An value containing the Id of the .
Результат IQueryable
        public IQueryable<PageRoute> GetByPageId( int pageId )
        {
            return Queryable().Where( t => t.PageId == pageId );
        }
PageRouteService