Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发 WPF 应用程序,并希望有机会通过用户界面更改数据库。我只使用 MS SQL Server,不想为此目的选择 Odbc 数据源。我也不想手动编辑连接字符串 - 我认为这对普通用户来说太难了。
该问题的最佳做法是什么?
在 gui 中添加您想要的所有连接字符串。并查询视图模型中的所有连接字符串
foreach(var con in ConfigurationManager.Connectionstrings) { Connections.Add(con.Name); }
像这样的东西。