Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

XPQuery(Session, Boolean) Constructor

Creates an instance of the XPQuery<T> class with specified settings.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v19.2.dll

Declaration

public XPQuery(
    Session session,
    bool inTransaction
)

Parameters

Name Type Description
session Session

A Session class instance which is used to retrieve persistent objects in LINQ queries.

inTransaction Boolean

true to enable the InTransaction mode; otherwise, false.

Remarks

To create an InTransaction XPQuery<T> object based on an existing XPQuery<T> instance, call its XPQuery<T>.InTransaction method.

See Also