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

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

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

            return cqGetLatestContentByParent1(ctx, sp);
        }

Same methods

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