Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

automatically exposing database tables through web services

Is there any framework or tool to generate web services (WCF) access to all the non transactional tables in my database? something like asp.net dynamic data but with web services, I need to do this for homologation with other systems.

like image 885
ryudice Avatar asked Aug 24 '26 11:08

ryudice


1 Answers

Check out WCF Data Services - you can easily create a model of your database (Entity Framework, Linq-to-SQL, custom) and expose all tables and their contents via a WCF REST interface to any HTTP browser.

like image 119
marc_s Avatar answered Aug 27 '26 01:08

marc_s