基于web.config动态设置LINQ dbml 文件中的连接字符串

来源:互联网 发布:数据新常态 下载 编辑:程序博客网 时间:2024/06/06 07:28

Ideally, you want your LINQ database connection strings defined outside your compiled code and to be held in the Web.Config instead.
 
Unfortunately, by default, they are added to your Settings.cs file which is then compiled away into your code. This has the effect of reducing your ability to easily configure your applications for different environments (i.e., you would need to have different compiled DLLs for dev, test and production).
 
It is also LESS secure because you can easily use reflection to examine your DLLs for passwords - whereas you can encrypt the web.config so it is only viewable to people who have permissions to the IIS console. This is more difficult to break.
 
The recommendations to remedy this issue in the following MSDN bloghttp://blogs.msdn.com/jongallant/archive/2007/11/25/linq-and-web-application-connection-strings.aspx is slightly wrong. He suggests that you remove the default constructor in the designer. This is bad because you would have to fix up the file every time you regenerate your dbml file. Instead, you should use what is provided to you and set the property on the designer for "Application Settings" to false and also do the following steps every time you will go for the drag and drop your stored procedure and user defined functions.

  1. Right click on any white space in dbml file.
  2. Click on properties option.
  3. Select drop down for Connection option in Properties window.
  4. Choose last option from drop down for Connection option which should be none.
  5. Close Properties window and press Save.

 

This allows you to define a default constructor in your own partial class that extends your dbml context designer classes like example:

 

In the above example, UserClassesDataContext is the class name of the LINQ to SQL(DBML) file and WebConnectionString is the name of the Connection String in Web.Config.
 
Happy coding.

原文:http://www.codeproject.com/Tips/189440/How-to-set-the-connection-string-in-your-LINQ-dbml.aspx

原创粉丝点击