Rock.Model.SiteDomainService.GetBySiteId C# (CSharp) Метод

GetBySiteId() публичный Метод

Returns an enumerable collection of Rock.Model.SiteDomain">SiteDomains the Id of the
public GetBySiteId ( int siteId ) : IQueryable
siteId int An that contains the Id a to search by.
Результат IQueryable
        public IQueryable<SiteDomain> GetBySiteId( int siteId )
        {
            return Queryable().Where( t => t.SiteId == siteId );
        }