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
Post a Comment