Gets or sets the size of the batch, this can change dynamically by calling the session's SetBatchSize.

Namespace: NHibernate.AdoNet
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public abstract int BatchSize { get; set; }
Visual Basic
Public MustOverride Property BatchSize As Integer
	Get
	Set
Visual C++
public:
virtual property int BatchSize {
	int get () abstract;
	void set (int value) abstract;
}

Field Value

The size of the batch.

Implements

IBatcher..::..BatchSize

See Also