Partager via


Méthode QStreamable.LeftAntiJoin<TLeft, TRight> (IQStreamable<TLeft>, IQStreamable<TRight>, Expression<Func<TLeft, TRight, Boolean>>)

Retourne les événements degauche lorsqu'ils ne coïncident à aucun des événements de droite correspondants dans lesquels les événements sont mis en correspondance en fonction d'un prédicat.

Espace de noms :  Microsoft.ComplexEventProcessing.Linq
Assembly :  Microsoft.ComplexEventProcessing (en Microsoft.ComplexEventProcessing.dll)

Syntaxe

'Déclaration
<ExtensionAttribute> _
Public Shared Function LeftAntiJoin(Of TLeft, TRight) ( _
    left As IQStreamable(Of TLeft), _
    right As IQStreamable(Of TRight), _
    predicate As Expression(Of Func(Of TLeft, TRight, Boolean)) _
) As IQStreamable(Of TLeft)
'Utilisation
Dim left As IQStreamable(Of TLeft)
Dim right As IQStreamable(Of TRight)
Dim predicate As Expression(Of Func(Of TLeft, TRight, Boolean))
Dim returnValue As IQStreamable(Of TLeft)

returnValue = left.LeftAntiJoin(right, _
    predicate)
public static IQStreamable<TLeft> LeftAntiJoin<TLeft, TRight>(
    this IQStreamable<TLeft> left,
    IQStreamable<TRight> right,
    Expression<Func<TLeft, TRight, bool>> predicate
)
[ExtensionAttribute]
public:
generic<typename TLeft, typename TRight>
static IQStreamable<TLeft>^ LeftAntiJoin(
    IQStreamable<TLeft>^ left, 
    IQStreamable<TRight>^ right, 
    Expression<Func<TLeft, TRight, bool>^>^ predicate
)
static member LeftAntiJoin : 
        left:IQStreamable<'TLeft> * 
        right:IQStreamable<'TRight> * 
        predicate:Expression<Func<'TLeft, 'TRight, bool>> -> IQStreamable<'TLeft> 
JScript ne prend pas en charge les types et les méthodes génériques.

Paramètres de type

  • TLeft
    Type de charge utile gauche.
  • TRight
    Type de charge utile droite.

Paramètres

Valeur de retour

Type : Microsoft.ComplexEventProcessing.Linq.IQStreamable<TLeft>
Flux composé des événements de gauche en l'absence de correspondance avec des événements de droite.

Remarque relative à l'utilisation

En Visual Basic et C#, vous pouvez appeler cette méthode comme méthode d'instance sur tout objet de type IQStreamable<TLeft>. Lorsque vous utilisez la syntaxe de la méthode d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez https://msdn.microsoft.com/fr-fr/library/bb384936(v=sql.111) ou https://msdn.microsoft.com/fr-fr/library/bb383977(v=sql.111).

Voir aussi

Référence

QStreamable Classe

Surcharge LeftAntiJoin

Espace de noms Microsoft.ComplexEventProcessing.Linq