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

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

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

            return cqGetLatestContentBySibling1(ctx, sp);
        }

Same methods

CompiledQueries::GetLatestContentBySibling ( Carrotware.CMS.Data.CarrotCMSDataContext ctx, System.Guid siteID, string sPage, bool bActiveOnly ) : IQueryable