EntityDataReader.Dispose(Boolean) 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.
Releases the resources consumed by this EntityDataReader and calls Close().
protected:
override void Dispose(bool disposing);
protected override void Dispose (bool disposing);
override this.Dispose : bool -> unit
Protected Overrides Sub Dispose (disposing As Boolean)
Parameters
- disposing
- Boolean
true
to release both managed and unmanaged resources; false
to release only unmanaged resources.
Remarks
SQL Server puts output parameters from stored procedures at the end of the result stream, after all the result sets. Therefore, to get output parameter values, an application must consume all the records in all the result sets. If the application closes the EntityDataReader (which would also close the DbDataReader), output parameters might not be populated.
EntityDataReader does not implicitly consume result sets to make output parameters available. Therefore, note the following:
EntityDataReader calls the DbDataReader.NextResult only when EntityDataReader.NextResult is explicitly called. If DbDataReader.NextResult throws an exception, the EntityDataReader will wrap it in an EntityException (or a derived exception).
Close only closes the DbDataReader, without consuming any pending records or result sets.
Dispose only disposes of the DbDataReader, without consuming any pending records or result sets.