Breeze render xml column (SQL xml data column) as it is (not converted to object as Breeze used to). For example, bellow is data received client-side from Breeze :
<employee><firstname>Martin</firstname><lastname>MALONGA</lastname><age>74</age></employee>
- How to access this xml element at client-side using Breeze? are they functions like xquery inside breeze platform?
- How to update xml element client side and hope Breeze will transfer it to server?
For the 1st question I'd tried parser.parseFromString and get something but with a painful gymnastic labor; hope someone will pull out a better approch.