OrganizationServiceContextExtensions.IsDeleted<TSource, TTarget> Method (OrganizationServiceContext, TSource, Expression<Func<TSource, TTarget>>, TTarget)

 

Applies To: Dynamics CRM 2015

Determines whether a relationship has been deleted.

Namespace:   Microsoft.Xrm.Client
Assembly:  Microsoft.Xrm.Client (in Microsoft.Xrm.Client.dll)

Syntax

public static bool IsDeleted<TSource, TTarget>(
    this OrganizationServiceContext context,
    TSource source,
    Expression<Func<TSource, TTarget>> propertySelector,
    TTarget target
)
where TSource : Entity
where TTarget : Entity
public:
generic<typename TSource, typename TTarget>
where TSource : Entity
where TTarget : Entity
[ExtensionAttribute]
static bool IsDeleted(
    OrganizationServiceContext^ context,
    TSource source,
    Expression<Func<TSource, TTarget>^>^ propertySelector,
    TTarget target
)
static member IsDeleted<'TSource, 'TTarget when 'TSource : Entity when 'TTarget : Entity> : 
        context:OrganizationServiceContext *
        source:'TSource *
        propertySelector:Expression<Func<'TSource, 'TTarget>> *
        target:'TTarget -> bool
<ExtensionAttribute>
Public Shared Function IsDeleted(Of TSource As Entity, TTarget As Entity) (
    context As OrganizationServiceContext,
    source As TSource,
    propertySelector As Expression(Of Func(Of TSource, TTarget)),
    target As TTarget
) As Boolean

Parameters

  • source
    Type: TSource

    Type: TSource. The source entity instance.

  • target
    Type: TTarget

    Type: TTarget. The target entity instance.

Return Value

Type: System.Boolean

Type: Boolean
.

Type Parameters

  • TSource
    The source entity.
  • TTarget
    The target entity.

Remarks

This is an extension to the core IsDeleted method.

See Also

IsDeleted Overload
OrganizationServiceContextExtensions Class
Microsoft.Xrm.Client Namespace

Return to top

© 2017 Microsoft. All rights reserved. Copyright