DataRelationCollection.Remove 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中移除指定的关系。
重载
Remove(DataRelation) |
从集合中移除指定的关系。 |
Remove(String) |
从集合中移除具有指定名称的关系。 |
Remove(DataRelation)
- Source:
- DataRelationCollection.cs
- Source:
- DataRelationCollection.cs
- Source:
- DataRelationCollection.cs
从集合中移除指定的关系。
public:
void Remove(System::Data::DataRelation ^ relation);
public void Remove (System.Data.DataRelation relation);
member this.Remove : System.Data.DataRelation -> unit
Public Sub Remove (relation As DataRelation)
参数
- relation
- DataRelation
要移除的关系。
例外
关系为空值。
关系不属于该集合。
注解
CollectionChanged如果删除操作成功,则会触发 事件。 请注意,删除关系不会删除任何关联的约束对象。
另请参阅
适用于
Remove(String)
- Source:
- DataRelationCollection.cs
- Source:
- DataRelationCollection.cs
- Source:
- DataRelationCollection.cs
从集合中移除具有指定名称的关系。
public:
void Remove(System::String ^ name);
public void Remove (string name);
member this.Remove : string -> unit
Public Sub Remove (name As String)
参数
- name
- String
要移除的关系的名称。
例外
该集合中没有具有指定名称的关系。
注解
CollectionChanged如果删除操作成功,则会触发 事件。