微软企业库3.1DIY编译使用(数据库连接符写在企业库DLL里)

1.在winform项目app.config文件中去掉"PublicKeyToken=b03f5f7f11d50a3a"(不然无法加载使用新编译的企业库DLL文件)

2.在企业库所在源文件夹打开"x:\EntLib3Src\App Blocks\Src\Data"

3.打开解决方案文件"Data.VSTS.sln"

4.找到Database.cs文件打开,在

1
2
3
4
5
6
7
protected internal string ConnectionString
        {
            get
            {
                return this.connectionString.ToString();
            }
        }

改为

1
2
3
4
5
6
7
protected internal string ConnectionString
        {
            get
            {
                return "Data Source=localhost;Initial Catalog=TIMS2010;Persist Security Info=True;User ID=sa;Password=lyta037963322090";
            }
        }

5.保存,生成。

 

posted on 2013-12-20 12:20  honsen  阅读(392)  评论(0编辑  收藏  举报

导航