DataServiceContext.DetachLink(Object, String, Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从 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
。
例外
当 source
或 sourceProperty
为 null
时。
当 sourceProperty
为空字符串时。
注解
无论链接当前处于什么状态,均可分离 DataServiceContext 跟踪的任何链接。