2016年10月26日

【C#】LINQ to SQL (接続文字列を指定する)


O/Rデザイナーで作成すると、通常App.configにデータベースへの接続文字列が書かれるのですが、ソースの中で設定することもできます。

string connectionString = @"Data Source=MOUSEPC\MSSQLSERVER;Initial Catalog=TESTDB2;Integrated Security=True";

var db = new LinqTest01.DataClasses1DataContext(connectionString);




スポンサーリンク