Session.GetObjectsFromQuery(XPClassInfo, List<XPMemberInfo>, String, QueryParameterCollection) Method
Executes a SQL query and returns its result set as a collection of non-persistent objects.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.2.dll
NuGet Package: DevExpress.Xpo
#Declaration
public ICollection GetObjectsFromQuery(
XPClassInfo classInfo,
List<XPMemberInfo> members,
string sql,
QueryParameterCollection parameters
)
#Parameters
Name | Type | Description |
---|---|---|
class |
XPClass |
An XPClass |
members | List<XPMember |
Specifies object members mapped to columns in the result set. The order of list elements should correspond to the order of result set columns. |
sql | String | Specifies an SQL statement. |
parameters | Query |
Specifies query parameter values. |
#Returns
Type | Description |
---|---|
ICollection | A collection of non-persistent class |
#Remarks
Use QueryParameterCollection to pass strongly-typed parameters. See examples here: Always Encrypted (SQL Server only).
The connection provider automatically generates sequential parameter names (p0, p1, p2 …). To specify custom parameter names, use the overloaded GetObjectsFromQuery(XPClassInfo, List<XPMemberInfo>, String, String[], QueryParameterCollection) method.
This method does the following:
- Executes the specified SQL query and obtains the query result.
- Creates objects using the specified classInfo and populates their properties with the resulting set’s data The members parameter specifies the mapping between columns in the resulting set and object properties. Note that classInfo should represent a non-persistent class decorated with a NonPersistentAttribute.
Note
The Get
- A property that is not defined within the class
Info object. - A struct type member.
- A reference to a class with a struct type member.
- A collection used in object relations.
To learn more about executing SQL statements in XPO, refer to Direct SQL Queries.
Note
The Get