IObjectSet<TEntity>.Detach(TEntity) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Notifies the set that an object that represents an existing entity must be detached from the set.
public:
void Detach(TEntity entity);
public void Detach (TEntity entity);
abstract member Detach : 'Entity -> unit
Public Sub Detach (entity As TEntity)
Parameters
- entity
- TEntity
The object to detach from the set.
Remarks
Changes to the set may not be visible in an enumeration of the set until changes to that set have been persisted in some manner. This behavior depends on the specific implementation of the IObjectSet<TEntity>.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.