IQueryHasT Method (String, Compare, T) | 
 
                Filter out the edge if it does not have a property with a comparable value.
            
 
    Namespace: 
   Frontenac.Blueprints
    Assembly:
   VelocityGraph (in VelocityGraph.dll) Version: 10.1.0.0 (10.1)
SyntaxIQuery Has<T>(
	string key,
	Compare compare,
	T value
)
Function Has(Of T) ( 
	key As String,
	compare As Compare,
	value As T
) As IQuery
generic<typename T>
IQuery^ Has(
	String^ key, 
	Compare compare, 
	T value
)
abstract Has : 
        key : string * 
        compare : Compare * 
        value : 'T -> IQuery 
Parameters
- key
 - Type: SystemString
the key of the property - compare
 - Type: Frontenac.BlueprintsCompare
the comparator to use for comparison - value
 - Type: T
the value to check against 
Type Parameters
- T
 [Missing <typeparam name="T"/> documentation for "M:Frontenac.Blueprints.IQuery.Has``1(System.String,Frontenac.Blueprints.Compare,``0)"]
Return Value
Type: 
IQuerythe modified query object
See Also