RelationalFilter.withPropertyAndValue constructor

RelationalFilter.withPropertyAndValue(
  1. PropertyDefinitionBase propertyDefinition,
  2. Object value
)
Initializes a new instance of the The definition of the property that is being compared. Property definitions are available as static members from schema classes (for example, EmailMessageSchema.Subject, AppointmentSchema.Start, ContactSchema.GivenName, etc.) The value to compare with.

Implementation

RelationalFilter.withPropertyAndValue(
    PropertyDefinitionBase propertyDefinition, Object value)
    : super.withProperty(propertyDefinition) {
  this._value = value;
}