linq如何設定連線資料庫的字串

【驀然回首】發表於2018-03-02

linq沒有直接關聯連線字串,而是如建立DataContext db=new DataContext("");則自動在web.config中查詢

<connectionStrings>
    <add name="DataContext" connectionString="Data Source=192.168.100.2;Initial Catalog=aa;User Id=dfdfd;Password=666666" providerName="System.Data.SqlClient"/>    
  </connectionStrings>

在配置檔案中配置連線字串

程式中讀取配置檔案 對DataContext進行初始化


DataContext db=new DataContext("");

相關文章