Retrieves data from the server by an Expression tree.
Declaring type: ServerQueryHandler
Namespace: Zyan.InterLinq.Communication
Assembly: Zyan.Communication
Collapse/Expand Syntax
C#
public object RetrieveNonGenericObject (
        SerializableExpression serializableExpression
) 
Parameters
serializableExpression
Expression tree containing selection and projection.
Return Value
Returns requested data.
Collapse/Expand Remarks
This method's return type depends on the submitted Expression tree. Here some examples ('T' is the requested type):

MethodReturn Type

  • Select(...)
    T[]
  • First(...), Last(...)
    T
  • Count(...)
  • Contains(...)