כאשר יוצרים פרויקט חדש מסוג 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
כדי שאפליקציית ה-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
0 comments:
Post a Comment