EntityContainer.GetRelationshipSetByName 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
使用关系集的指定名称返回一个 RelationshipSet 对象。
命名空间: System.Data.Entity.Core.Metadata.Edm
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public Function GetRelationshipSetByName ( _
name As String, _
ignoreCase As Boolean _
) As RelationshipSet
用法
Dim instance As EntityContainer
Dim name As String
Dim ignoreCase As Boolean
Dim returnValue As RelationshipSet
returnValue = instance.GetRelationshipSetByName(name, _
ignoreCase)
public RelationshipSet GetRelationshipSetByName(
string name,
bool ignoreCase
)
public:
RelationshipSet^ GetRelationshipSetByName(
String^ name,
bool ignoreCase
)
member GetRelationshipSetByName :
name:string *
ignoreCase:bool -> RelationshipSet
public function GetRelationshipSetByName(
name : String,
ignoreCase : boolean
) : RelationshipSet
参数
- name
类型:System.String
要搜索的关系集的名称。
- ignoreCase
类型:System.Boolean
如果执行不区分大小写的搜索,则为 true;否则为 false。
返回值
类型:System.Data.Entity.Core.Metadata.Edm.RelationshipSet
一个 RelationshipSet 对象,表示具有指定名称的关系集。