I’m not much familiar with WCF, I’ve a requirement to create a set of services that can do only CRUD operations with database. Can I use WCF Data Services for this? Is there any other better solution for this?
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.
WCF Data Services are surely one of the best options you can have for your CRUD operations. You just need to expose your database tables with allowing all operations and expose webmethods. Some examplescan be found here:
http://www.c-sharpcorner.com/UploadFile/dhananjaycoder/restcrudoperation07182009063903AM/restcrudoperation.aspx
http://msdn.microsoft.com/en-us/gg465173
Hope this helps.