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.
我想知道您认为将 SqlDataReader 行映射到相应 C# 类的最佳方法是什么。SQL 查询是动态生成的。
SqlDataReader 不是持久的,它是一个消防软管,专为对数据进行只进、只读访问而设计。如果您想将 SQL 查询映射到类,您可能需要另一种方法,例如强类型数据集、LINQ2SQL 等。