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

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

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

            return cqGetContentByTagURL(ctx, sp);
        }