Can I use WCF RIA Services to query or manipulate XML data file (not relational database) in silverlight application?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
RIA assumes CRUD (create, read, update, delete) operations on the client side, but this can map to anything on the server-side (files, SQL, Xml, anything).
With RIA on the server-side you just create methods that match the required CRUD operation and the calls to those methods are automatic.
e.g. if you have a type called “Person”, then your server-side methods might be called:
Or you can label the methods explicitly with RIA attributes if you do not follow the suggested naming conventions: