Carrotware.CMS.Core.CompiledQueries.BlogNavAll C# (CSharp) Метод

BlogNavAll() статический приватный Метод

static private BlogNavAll ( Carrotware.CMS.Data.CarrotCMSDataContext ctx, System.Guid siteID, bool bActiveOnly ) : IQueryable
ctx Carrotware.CMS.Data.CarrotCMSDataContext
siteID System.Guid
bActiveOnly bool
Результат IQueryable
        internal static IQueryable<vw_carrot_Content> BlogNavAll(CarrotCMSDataContext ctx, Guid siteID, bool bActiveOnly)
        {
            SearchParameterObject sp = new SearchParameterObject {
                SiteID = siteID,
                DateCompare = DateTime.UtcNow,
                ContentTypeID = ContentPageType.GetIDByType(ContentPageType.PageType.BlogEntry),
                ContentType = ContentPageType.PageType.BlogEntry,
                ActiveOnly = bActiveOnly
            };

            return cqBlogNavAll(ctx, sp);
        }