ZEXSM / OData.QueryBuilder

OData.QueryBuilder - library for creating complex OData queries (OData version 4.01) based on data models with linq syntax.
MIT License
77 stars 31 forks source link

Unable to use Select operator inside Expand #108

Closed NayanJain09 closed 1 year ago

NayanJain09 commented 1 year ago

image

Going by the example code to use select inside expand I'm getting this error. What is the correct approach to select only required params inside expand?

casually-creative commented 1 year ago

You're using the same lambda expression name in your for and your expand, called x. Try using different names.

NayanJain09 commented 1 year ago

Thank You! This helps🙂