Rock.Model.ExceptionLogService.GetBySiteId C# (CSharp) Méthode

GetBySiteId() public méthode

Gets Exception Logs by Person Id Gets a collection of Rock.Model.ExceptionLog entities by the Id of the Rock.Model.Site that they occurred on.
public GetBySiteId ( int siteId ) : IQueryable
siteId int An containing the Id of the to search by.
Résultat IQueryable
        public IQueryable<ExceptionLog> GetBySiteId( int? siteId )
        {
            return Queryable().Where( t => ( t.SiteId == siteId || ( siteId == null && t.SiteId == null ) ) );
        }