Click or drag to resize
ContainsPredicateProducers Class
Extension methods to produce Contains based predicates (EXISTS, IN..).
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.QuerySpecContainsPredicateProducers

Namespace:  SD.LLBLGen.Pro.QuerySpec
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public static class ContainsPredicateProducers
Methods
  NameDescription
Public methodStatic memberContains(DynamicQuery, DynamicQuery)
Creates a predicate which has to be true if a value in the set produced by query valueSupplierQuery is in the set produced by query.
Public methodStatic memberContains(DynamicQuery, Object)
Creates a predicate which has to be true if the query contains the value specified.
Public methodStatic memberContains(QuerySpec, IEntityCore)
Creates a predicate which has to be true if the query contains an entity which has the same PK values as the entityInstance specified
Public methodStatic memberContainsTEntity(EntityQueryTEntity, EntityQueryTEntity)
Creates a predicate which has to be true if the query contains the entities in valueSupplierQuery
Top
Remarks
Uses adapter field instances for expression wrapping, as it doesn't matter: the expression will emitted into the output, not the field containing it.
See Also