0

我正在做一个临时查询以获取一组 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;
        }
    }
4

1 回答 1

0

我会把它分成两个独立的功能,然后加入

与此类似

List<int> getItemAffid(string Name) {....//your code here to return a list}

List<int> getPublisherAffid(string Name) {....//your code here to return a list} 

然后加入他们

var SearchItemAffid = from a in getItemAffid(<your var>) select a;
var SearchedPublisherAffid = from a in getPublisherAffid(<your var>) select a;

var Combined = SearchedPublisherAffid.Union(SearchItemAffid);

编辑:然后您可以将其绑定到网格

DataGrid.Datasource = Combined
于 2011-01-07T05:56:42.803 回答