Session.GetObjectsFromSproc Method
Name | Parameters | Description |
---|---|---|
GetObjectsFromSproc(XPClassInfo, LoadDataMemberOrderItem[], String, OperandValue[]) | classInfo, members, sprocName, parameters | Executes a stored procedure and returns its result set as a collection of non-persistent objects. |
GetObjectsFromSproc(XPClassInfo, List<XPMemberInfo>, String, OperandValue[]) | classInfo, members, sprocName, parameters | Executes a stored procedure and returns its result set as a collection of non-persistent objects. |
GetObjectsFromSproc(XPClassInfo, String, OperandValue[]) | classInfo, sprocName, parameters | Executes a stored procedure and returns its result set as a collection of non-persistent objects. |
GetObjectsFromSproc<T>(LoadDataMemberOrderItem[], String, OperandValue[]) | members, sprocName, parameters | Executes a stored procedure and returns its result set as a collection of objects of a non-persistent type specified by the generic type parameter. |
GetObjectsFromSproc<T>(List<XPMemberInfo>, String, OperandValue[]) | members, sprocName, parameters | Executes a stored procedure and returns its result set as a collection of objects of a non-persistent type specified by the generic type parameter. |
GetObjectsFromSproc<T>(String, OperandValue[]) | sprocName, parameters | Executes a stored procedure and returns its result set as a collection of objects of a non-persistent type specified by the generic type parameter. |
Feedback