Rock.Model.BlockTypeService.GetByPath C# (CSharp) Method

GetByPath() public method

Gets a collection of Rock.Model.BlockType entities by path.
public GetByPath ( string path ) : IQueryable
path string A containing the path to search for.
return IQueryable
        public IQueryable<BlockType> GetByPath( string path )
        {
            return Queryable().Where( t => t.Path == path );
        }