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.
我有一个 DataSet,它在 VB.NET 中有一个 Balance 列。我想根据它们是正值还是负值将其分解为借方和贷方列。我正在从不支持 CASE、IF 和 UNION 的专用 ODBC 连接构建数据集。因此,我将不得不一次将所有数据检索到 DataSet 中,然后操作 DataSet
我是 Linq 的新手,所以任何提示都将不胜感激。谢谢你。
您正在谈论 LINQ 术语中的投影。LINQ 语句的 Select 部分用于指定查询返回的内容。我从来没有以这种方式使用它来返回数据集,而是返回 POCO。