我正在做一个临时查询以获取一组 ID,每个 ID 都进入表适配器的查询,填充行。
但是,除了使用表适配器上的 ClearBeforeFill 属性之外,我想不出任何其他方法来清除。
所有这些都相当于有效的代码,但我觉得有点像 hack。
有谁知道正确/更好的方法来做到这一点?(注意:我知道内联 SQL 并不理想)
var db = new Data.PRDataDataContext();
verifiedLineItemsTableAdapter.ClearBeforeFill = true;
bool flag = true;
foreach (var affid in db.ExecuteQuery<int>(
@"
SELECT Item.affid
FROM dbo.Item INNER JOIN
dbo.Affiliate ON dbo.Item.affid = dbo.Affiliate.affid
WHERE Affiliate.name={0}
UNION
SELECT affid
FROM dbo.Publisher
WHERE name={0}"
, name))
{
Console.WriteLine("got " + affid);
verifiedLineItemsTableAdapter.FillByAffId(
publisherReportDataSet1.VerifiedLineItems, affid);
if (flag)
{
verifiedLineItemsTableAdapter.ClearBeforeFill = false;
flag = false;
}
}