Escape symbol in documentdb query -


how query on property contains '-' symbol.

specifically want perform query:

select * c.inside.abs-humid 

but gives me error.

querying on properties without dash working fine, how do this?

documentdb uses json notation escaping property names. try:

select * c.inside["abs-humid"]


Comments

Popular posts from this blog

android - Pass an Serializable object in AIDL -

How to provide Authorization & Authentication using Asp.net, C#? -

How to use Authorization & Authentication in Asp.net, C#? -