This is a mirror of official site: http://jasper-net.blogspot.com/

How to Configure Silverlight Business Application to use SQL Server

| Sunday, December 26, 2010
כאשר יוצרים פרויקט חדש מסוג Silverlight Business Application ב-Visual Studio 2010, האפליקציה מוגדרת לעבוד מול SQL Express מקומי בשרת הפיתוח.
כדי שאפליקציית ה-Silverlight תעבוד מול SQL Server, יש להוסיף לקובץ web.config הגדרה של Connection String. לדוגמא:

<connectionStrings>
  <remove name="LocalSqlServer" />
  <add name="LocalSqlServer"
     connectionString="Password=SQLPassword;Persist Security Info=True;
           User ID=SQLUser;Initial Catalog=DB_Name;Data Source=ServerName"
     providerName="System.Data.SqlClient" />

Read more: Dudi Nissan's Blog

Posted via email from .NET Info

0 comments: