HpcLinqQueryable.ContainsAsQuery Method (IQueryable, TSource, IEqualityComparer)

Creates a query that you can run later to determine whether a set of records contains the specified record by using the specified IEqualityComparer interface to compare the records.

Namespace: Microsoft.Hpc.Linq
Assembly: Microsoft.Hpc.Linq (in Microsoft.Hpc.Linq.dll)

Usage

'Usage
Dim source As IQueryable(Of TSource)
Dim item As TSource
Dim comparer As IEqualityComparer(Of TSource)
Dim returnValue As IQueryable(Of Boolean)

returnValue = HpcLinqQueryable.ContainsAsQuery(source, item, comparer)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function ContainsAsQuery(Of TSource) ( _
    source As IQueryable(Of TSource), _
    item As TSource, _
    comparer As IEqualityComparer(Of TSource) _
) As IQueryable(Of Boolean)
[ExtensionAttribute] 
public static IQueryable<bool> ContainsAsQuery<TSource> (
    IQueryable<TSource> source,
    TSource item,
    IEqualityComparer<TSource> comparer
)
[ExtensionAttribute] 
public:
generic<typename TSource>
static IQueryable<bool>^ ContainsAsQuery (
    IQueryable<TSource>^ source, 
    TSource item, 
    IEqualityComparer<TSource>^ comparer
)
J# supports the use of generic APIs, but not the declaration of new ones.
JScript does not support generic types or methods.

GenericParameters

  • TSource
    The type of the records in the source parameter.

Parameters

  • item
    An object of the type that the TSource parameter specifies that is the record that you want to match in the set of records.
  • comparer
    The IEqualityComparer interface that you want to use to compare the records.

Return Value

An IQueryable interface for the query.

Exceptions

Exception type Condition
ArgumentNullException

The specified source parameter is a null reference (Nothing in Visual Basic).

Remarks

Use this method if you want to perform the same query as the Contains method, but want to delay running the query instead of generating results immediately.

Use the Submit method to run the query. Use the GetEnumerator method or the foreach statement of the C# language (For Each in Visual Basic) to get the results of the query. The enumerator contains a single Boolean element, which has a value of true if set of records contains the specified record, or false if the set of records does not contain the specified record.

To create a query that tests whether the set of records contains a record by using the default equality comparer to compare the records, use the ContainsAsQuery(Generic IQueryable,J) form of the method.

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

For more information about how the query runs and its behavior, see the Remarks section for the Contains method.

Platform Note: This method was introduced in Windows HPC Server 2008 R2 with Service Pack 2 (SP2) and is not supported in previous versions.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP, Windows Vista, Windows 7, Windows 8, Windows Server 2003, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012

Target Platforms

Windows XP, Windows Vista, Windows 7, Windows Server 2003, Windows Server 2003 R2, Windows Server 2008, Windows Server 2008 R2, with HPC Pack Client Utilities

See Also

Reference

HpcLinqQueryable Class
HpcLinqQueryable Members
Microsoft.Hpc.Linq Namespace
Contains
ContainsAsQuery(Generic IQueryable,J)

Build Date:

2013-04-22