EntityContainer.TryGetRelationshipSetByName 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用關聯性 (Relationship) 集合的指定名稱傳回 RelationshipSet 物件。
public:
bool TryGetRelationshipSetByName(System::String ^ name, bool ignoreCase, [Runtime::InteropServices::Out] System::Data::Metadata::Edm::RelationshipSet ^ % relationshipSet);
public bool TryGetRelationshipSetByName (string name, bool ignoreCase, out System.Data.Metadata.Edm.RelationshipSet relationshipSet);
member this.TryGetRelationshipSetByName : string * bool * RelationshipSet -> bool
Public Function TryGetRelationshipSetByName (name As String, ignoreCase As Boolean, ByRef relationshipSet As RelationshipSet) As Boolean
參數
- name
- String
所搜尋之關聯性集合的名稱。
- ignoreCase
- Boolean
true
表示要執行不區分大小寫的搜尋,否則為 false
。
- relationshipSet
- RelationshipSet
在這個方法傳回時會包含 RelationshipSet 物件。
傳回
如果有符合搜尋準則的關聯性集合,則為 true
,否則為 false
。