DataServiceContext.DetachLink(Object, String, Object) 方法

定义

DataServiceContext 所跟踪的链接列表中移除指定链接。

public:
 bool DetachLink(System::Object ^ source, System::String ^ sourceProperty, System::Object ^ target);
public bool DetachLink (object source, string sourceProperty, object target);
member this.DetachLink : obj * string * obj -> bool
Public Function DetachLink (source As Object, sourceProperty As String, target As Object) As Boolean

参数

source
Object

参与了标记为要删除的链接的源对象。

sourceProperty
String

源对象上的属性名称,表示源和目标之间的链接中的源。

target
Object

链接中涉及的已绑定到源对象的目标对象。 目标对象类型必须是源属性所标识的类型或子类型。

返回

如果指定的实体已分离,则返回 true;否则返回 false

例外

sourcesourcePropertynull 时。

sourceProperty 为空字符串时。

注解

无论链接当前处于什么状态,均可分离 DataServiceContext 跟踪的任何链接。

适用于