London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
PageDataCollection col = new PageDataCollection(); PropertyCriteriaCollection criterias = new PropertyCriteriaCollection(); PropertyCriteria criteria; criteria = new PropertyCriteria(); criteria.Name = "property1"; criteria.Type = PropertyDataType.String; criteria.Condition = CompareCondition.GreaterThan; criteria.Value = "test"; criterias.Add(criteria); criteria = new PropertyCriteria(); criteria.Name = "property2"; criteria.Type = PropertyDataType.Boolean; criteria.Condition = CompareCondition.Equal; criteria.Value = true.ToString(); criterias.Add(criteria); col.Add(Global.EPDataFactory.FindPagesWithCriteria(Configuration.StartPage, criterias));
Altså ønsker jeg å finnes sider der: property1 = "test" AND property2 = "true" Jeg vet det er mulig å løse dette med filter, men det er ikke det jeg er ute etter her..