Created
April 4, 2012 07:26
-
-
Save masaru-b-cl/2299470 to your computer and use it in GitHub Desktop.
ODP.NETのTableAdapterで独自の接続文字列を設定する方法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace OriginalConnectionStringTest.Dao | |
{ | |
public partial class AreasDataSet | |
{ | |
} | |
namespace AreasDataSetTableAdapters | |
{ | |
public partial class H_AREATableAdapter | |
{ | |
public H_AREATableAdapter(string connectionString) | |
{ | |
this.Connection.ConnectionString = connectionString; | |
} | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment