1

我们有以下查询来给我们一个左外连接:

(from t0 in context.accounts
           join t1 in context.addresses
                 on new { New_AccountCode = t0.new_accountcode, New_SourceSystem = t0.new_sourcesystem, New_Mailing = t0.new_MailingAddressString }
             equals new { New_AccountCode = t1.new_AccountCode, New_SourceSystem = t1.new_SourceSystem, New_Mailing = t1.new_MailingAddressString } into t1_join           
           from t1 in t1_join.DefaultIfEmpty()          
           where
             t0.statecode != 1 &&
             t0.statuscode != 2 &&
             t1.new_AccountCode == null &&
             t1.new_SourceSystem == null &&
             t1.new_MailingAddressString == null                   
           select t0)
           .OrderBy(o => o.new_accountcode)
           .ThenBy(o2=>o2.new_sourcesystem)
           .Skip(recordsProcessed)
           .Take(recordBatchSize).ToList();

问题是,如果左表(帐户)包含具有相同帐户代码值的多行,则结果集包含重复的第一行 - 因此具有帐户代码、源系统和邮件地址字符串的唯一组合的第二行被“覆盖”。

Given:
accounts
accountcode     sourcesystem     mailingaddressstring
10025           ss1              12345
10025           ss2              67891

addresses
accountcode     sourcesystem     mailingaddressstring
10025           ss1              12345
10025           ss2              67891

we get:
accountcode     sourcesystem     mailingaddressstring
10025           ss1              12345
10025           ss1              12345

我们对 select 语句做错了吗?

谢谢

4

1 回答 1

1

啊,那好多了。左连接对我来说看起来很漂亮……但我觉得一切都不好。

  • 这些列中的任何(或全部)是主键吗?
  • 数据上下文的生命周期是什么?以前是用来查询的吗?以前是用来保存记录的吗?

假设我有一个 Order 记录,其中 OrderId 设置为 dbml 中的主键(但不在数据库中,允许创建重复记录)。如果我要查询订单,并且 OrderID = 5 存在两次......当数据上下文看到第一个具有 OrderID 的实例时,它开始跟踪它。当它看到第二个实例时,它不会对行进行水合,而是返回它已经返回的 ID=5 的实例。

如果我的查询结果是匿名类型,我不会看到这种行为,因为匿名类型在 dbml 中没有主键,并且不会被数据上下文跟踪。

于 2010-06-04T01:34:05.490 回答