DataServiceContext.AttachLink(Object, String, Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
通知 DataServiceContext 開始追蹤指定的連結,此連結定義實體物件之間的關聯性。
public:
void AttachLink(System::Object ^ source, System::String ^ sourceProperty, System::Object ^ target);
public void AttachLink (object source, string sourceProperty, object target);
member this.AttachLink : obj * string * obj -> unit
Public Sub AttachLink (source As Object, sourceProperty As String, target As Object)
參數
- source
- Object
新連結中的來源物件。
- sourceProperty
- String
來源物件上的屬性名稱,表示來源與目標物件之間的連結。
- target
- Object
連結中的目標物件,這個連結繫結至這個呼叫中指定的來源物件。 目標物件必須是來源屬性所識別的型別,或是該型別的子型別。
例外狀況
source
、 sourceProperty
或 target
為 null。