xpo-devexpress-dot-xpo-dot-session-dot-getobjectsfromsprocparametrized.md
| Name | Parameters | Description |
|---|---|---|
| GetObjectsFromSprocParametrized(XPClassInfo, LoadDataMemberOrderItem[], String, SprocParameter[]) | classInfo, members, sprocName, parameters | Executes a stored procedure with named parameters and returns its result set as a collection of non-persistent objects. |
| GetObjectsFromSprocParametrized(XPClassInfo, List<XPMemberInfo>, String, SprocParameter[]) | classInfo, members, sprocName, parameters | Executes a stored procedure with named parameters and returns its result set as a collection of non-persistent objects. |
| GetObjectsFromSprocParametrized(XPClassInfo, String, SprocParameter[]) | classInfo, sprocName, parameters | Executes a stored procedure with named parameters and returns its result set as a collection of non-persistent objects. |
| GetObjectsFromSprocParametrized<T>(LoadDataMemberOrderItem[], String, SprocParameter[]) | members, sprocName, parameters | Executes a stored procedure with named parameters and returns its result set as a collection of objects of a non-persistent type specified by the generic type parameter. |
| GetObjectsFromSprocParametrized<T>(List<XPMemberInfo>, String, SprocParameter[]) | members, sprocName, parameters | Executes a stored procedure with named parameters and returns its result set as a collection of objects of a non-persistent type specified by the generic type parameter. |
| GetObjectsFromSprocParametrized<T>(String, SprocParameter[]) | sprocName, parameters | Executes a stored procedure with named parameters and returns its result set as a collection of objects of a non-persistent type specified by the generic type parameter. |