Automatically display database tables through web services

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

+3
source share
3 answers

Refuse WCF data services - you can easily create your database model (Entity Framework, Linq-to-SQL, custom) and expose all tables and their contents through the WCF REST interface for any HTTP browser.

+3
source

Yep - WCF Data Services - . "OData".

MIX10 () (MS Architect), : http://live.visitmix.com/MIX10/Sessions/FT12

+2

Maybe WCF RIA Services ? I have not used it, but from what I read it looks like it will be close. Although the focus is on Silverlight, it will play well with other endpoints.

+1
source

Source: https://habr.com/ru/post/1746951/


All Articles