How to connect a database in Silverlight applications

I am new to Silverlight. and I want to know how we can connect our application to the database. I am using SQL 2005 server as a database. and I donโ€™t want to use Linq ... so please suggest me how can I connect directly to Silverlight or using a web service

I have no problem using web services. Please prove that an example code or link with an example will be useful ...

thanks

+4
source share
4 answers

I found the answer to my question pretty much ... so share with you all

Check out this link for a large set of documentation on using ADO.Net Data Services in Silverlight.

I found another good article , so Iโ€™m editing my answer .... but itโ€™s luck, if it works for you, if not then the author of the article will answer :( pretty sad ...

Here is the best link I hurried !!! This solves the problem. Thank you so much kencox

+8
source

Um, that would be very bad. If you need data from a database, you can use a web service to help you collect this information using several methods, but if what you are trying to do is let your Silver Light application execute SQL queries directly, what you do this is the wrong way.

+2
source

ADO.net RIA Services (still in beta) is another possibility:

http://msdn.microsoft.com/en-us/magazine/dd695920.aspx

NTN Braulio

+1
source

Try the built-in EffiProz Silverlight database. It is written entirely in C # and comes with the ADO.NET provider. http://www.effiproz.com/product_sl.aspx

0
source

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


All Articles