使用BQL从BQL中选择非重复项目的最佳方法是什么?
Search<PRTaxCode.prGovtRefNbr,
Where<PRTaxCode.prGovtRefNbr, IsNotNull>,
And<PRTaxCode.prGovtRefNbr, ***not already in results***>>?
目前的结果: 52-55555555555 52-55555555555&lt; - 删除此副本 52-12345678 52-144550099
结果应该是: 52-55555555555 52-12345678 52-144550099
答案 0 :(得分:1)
使用Aggregate和GroupBy构造给出了期望的结果。
找到了我自己的答案:
Search4<PRTaxCode.prGovtRefNbr,
Where<PRTaxCode.prGovtRefNbr, IsNotNull>,
Aggregate<GroupBy<PRTaxCode.prGovtRefNbr>>>