How to have silverlight get its data from MySQL

前端 未结 6 1335

I\'ve written a small hello world test app in Silverlight which i want to host on a Linux/Apache2 server. I want the data to come from MySQL (or some other linux compatible

6条回答
  •  一生所求
    2020-12-17 08:00

    Silverlight does not have any capability to directly access database servers. What you can do is to expose your database operations through web services (ASMX or WCF, even non-.NET!) and use Silverlight to access those services.

提交回复
热议问题