DataServiceContext.AddRelatedObject 메서드
컨텍스트에 관련 개체를 추가하고 단일 요청에서 두 개체 간의 관계를 정의하는 링크를 만듭니다.
네임스페이스: System.Data.Services.Client
어셈블리: Microsoft.Data.Services.Client(Microsoft.Data.Services.Client.dll)
구문
‘선언
Public Sub AddRelatedObject ( _
source As Object, _
sourceProperty As String, _
target As Object _
)
‘사용 방법
Dim instance As DataServiceContext
Dim source As Object
Dim sourceProperty As String
Dim target As Object
instance.AddRelatedObject(source, sourceProperty, _
target)
public void AddRelatedObject(
Object source,
string sourceProperty,
Object target
)
public:
void AddRelatedObject(
Object^ source,
String^ sourceProperty,
Object^ target
)
member AddRelatedObject :
source:Object *
sourceProperty:string *
target:Object -> unit
public function AddRelatedObject(
source : Object,
sourceProperty : String,
target : Object
)
매개 변수
- source
유형: System.Object
컨텍스트에서 추적 중인 부모 개체입니다.
- sourceProperty
유형: System.String
두 엔터티 간의 연결에 따라 관련 개체를 반환하는 탐색 속성의 이름입니다.
- target
유형: System.Object
추가되는 관련 개체입니다.
주의
AddObject, AddLink, SetLink의 세 메서드를 호출하는 대신 AddRelatedObject 메서드를 호출하여 관련 개체를 추가할 수 있습니다.