Skip to main content
.NET 6.0+

XPQueryExtensions.Query<T>(Session) Method

Creates a new XPQuery<T> instance from a specified session’s scope.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public static XPQuery<T> Query<T>(
    this Session session
)

Parameters

Name Type Description
session Session

A Session object or its descendant, which instantiates an XPQuery<T>. The specified session is assigned to the XPQueryBase.Session property.

Type Parameters

Name
T

Returns

Type Description
XPQuery<T>

An XPQuery<T> object instantiated from the session‘s scope.

Remarks

Example:

using System.Linq;
using DevExpress.Xpo;

// ...

var data = from c in session1.Query<Person>()
           where c.LastName.StartsWith("A")
           select c;
See Also