Is it possible to Query an Odata service and expand Child of Child entities?

The following statement should return what you are looking for: var query = from c in Service.Brands. Expand("Families/Models") This will run the following odata query: OData. Svc/Brands?

$expand=Families/Models Here is a link to some further odata documentation: The syntax of a $expand query option is a comma-separated list of Navigation Properties. Additionally each Navigation Property can be followed by a forward slash and another Navigation Property to enable identifying a multi-level relationship.

The following statement should return what you are looking for: var query = from c in Service.Brands. Expand("Families/Models") This will run the following odata query: .../OData. Svc/Brands?

$expand=Families/Models Here is a link to some further odata documentation: The syntax of a $expand query option is a comma-separated list of Navigation Properties. Additionally each Navigation Property can be followed by a forward slash and another Navigation Property to enable identifying a multi-level relationship.

Darn, I've read that ...but dismissed it rather quickly cause I had no idea what they meant with 'graph of entities' ... #$%$ Thank you very much for pointing me, Gene – Andreas Aug 16 at 2:45.

Var query = from c in Service.Brands. The syntax of a $expand query option is a comma-separated list of Navigation Properties. Additionally each Navigation Property can be followed by a forward slash and another Navigation Property to enable identifying a multi-level relationship.

Terms of service. Not the answer you're looking for? Or ask your own question.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions