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

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

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

            return cqGetContentCountByParent1(ctx, sp);
        }

Same methods

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