Namespaces

Types

Type EnumerableImpl

Namespace NHibernate.Impl

Interfaces IEnumerable, IEnumerator, IDisposable

Methods

Properties

Public instance methods

void Dispose()

Takes care of freeing the managed and unmanaged resources that this class is responsible for.

bool Equals(object obj)

Parameters
return bool
object obj

IEnumerator GetEnumerator()

Returns an enumerator that can iterate through the query results.
Parameters
return IEnumerator An IEnumerator that can be used to iterate through the query results.

int GetHashCode()

Parameters
return int

Type GetType()

Parameters
return Type

bool MoveNext()

Advances the enumerator to the next element of the query results.
Parameters
return bool ${WriteSummary(content)}

void Reset()

string ToString()

Parameters
return string

Public properties

object Current get;

Gets the current element in the query results.
If the IQuery only returns one type of Entity then an object will be returned. If this is a multi-column resultset then an object array will be returned.
return object