Accessing Silverlight with Linux Postgres Database?

I know that we cannot access the database directly using Silverlight. Linq 2 SQL does not exist for Silverlight, but can I use other things? I also heard about RIA Services and ADO.net, but I don’t think they are implemented for Linux Server.

Thanks for your future answers.

+4
source share
2 answers

If you can create a REST or SOAP web service that provides data from a database, Silverlight can access this service with its network stack.

+1
source

You need to collect a few things.

First, if you want to create a model, then you will look for an ORM that works itn Postgresql there are probably several, I came across Storm , but maybe there are others.

Then you will need to expose the model using SOAP again, there are several SOAP implementations that you could use. (In fact, at this point I'm going to tweak the tags to better tweak this question, this is not a Linq-To-SQL, C # or ado.net question).

0
source

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


All Articles