我在我的 c# 应用程序中使用以下连接字符串与本地托管的数据库进行通信。
string conn = String.Format("Server={0};Port={1};" +
"User Id={2};Password={3};Database={4};",
"localhost", "5432", "postgres",
"postgres", "table");
NpgsqlConnection connection = new NpgsqlConnection(connstring);
connection.Open();
NpgsqlCommand sqlcmd = new NpgsqlCommand("SELECT * FROM public.roads", connection);
NpgsqlDataReader r = sqlcmd.ExecuteReader();
有没有办法可以在 config.app 文件中添加服务器信息并在我的代码中访问它?
慕妹3242003
相关分类