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.
我正在使用 DAAB。请指导我,我们需要在数据库调用后手动检查和关闭连接吗?
谢谢
企业库负责为您打开和关闭连接。
您无需编写代码即可执行此操作。
使用 Entlib 5.0 DAAB(没有统一或任何其他依赖注入)的方法是:
public DataSet someMethod() { database = new SqlDatabase(connectionString); return database.ExecuteDataSet("procName", valparam1, valparam2); }