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.
我已经打开了分页的 radGridView。我也有单独的导出到 excel 按钮,它将所有过滤的行导出到 excel(所有行不是仅在当前页面上可见的行)
将行导出到 excel 后,我想将其列“exported”中的每个导出行值更改为 true。实现这一目标的最佳方法是什么?
假设您有一个像这样的过滤数据库查询
select field1, field2 from table where field1 like 'filter'
您可以执行相同的查询,而不是 where 子句,使用相同的逻辑选择 0 或 1
select field1, field2, case when field1 like 'filter' then 1 else 0 as wasexported from table