哪里返回错误的记录

时间:2014-05-08 10:54:30

标签: c# linq entity-framework

更新

我刚才有一个与此问题相关的想法。我正在使用这个项目的代码优先方法。最初我的ZoneMapping类已定义为您可以在下面看到,但数据库在数据库中只有一个PrimaryKey字段。我相信因为EF没有正确解释数据。

此时我对 migration SQL脚本输出进行了修改,以添加我应用于数据库的其他主键。我刚刚更新了迁移:

       CreateTable(
            "dbo.NetC_EF_ZoneMapping",
            c => new
                {
                    PostcodeKey = c.String(nullable: false, maxLength: 128),
                    Zone_ID = c.Int(),
                })
            .PrimaryKey(t => t.PostcodeKey)
            .ForeignKey("dbo.NetC_EF_Zone", t => t.Zone_ID)
            .Index(t => t.Zone_ID);

我刚刚在定义PostcodeKey之后尝试在迁移中手动添加额外的PrimaryKey。

 .PrimaryKey(t => t.Zone_ID)

不幸的是我仍然得到我的错误 - 我假设这个迁移不用于在代码中构建EF'模型',但我想知道它是否认为只有一个条目可以给PostcodeKey可以解释一下情况吗?


我发布了一个基于Linq Except not functioning as expected - duplicate items的新问题,因为我觉得已经发现问题无效,而且根本不是问题。

我遇到的问题是我有一个Linq Where子句似乎返回了错误的数据。我数据库中的数据如下所示:

enter image description here

表示此数据的类具有复合键:

/// <summary>
/// Represents a mapping between a postcode and a zone
/// </summary>
[Table("NetC_EF_ZoneMapping")]
public class ZoneMapping
{
    /// <summary>
    /// Gets or sets the postcode identifier
    /// </summary>
    [Key]
    public String PostcodeKey { get; set; }

    /// <summary>
    /// Gets or sets the Zone identifier
    /// </summary>
    [Key]
    public Zone Zone { get; set; }
}

所以我正在执行以下代码,这会产生不同的ID:

var result = this.context.ZoneMappings.Include("Zone").Where(z => z.Zone.ID == 257 && z.PostcodeKey == "2214");
var result2 = new FreightContext().ZoneMappings.Include("Zone").Where(z => z.Zone.ID == 257 && z.PostcodeKey == "2214");
if (result.First().Zone.ID != result2.First().Zone.ID)
     throw new InvalidOperationException();

enter image description here

这两个项的SQL(或ToString()是相同的)。所以唯一的区别是一个是新的上下文,而另一个是传入并用于其他一些东西。创建返回错误结果的上下文的代码是:

 // Copy the contents of the posted file to a memory stream
 using (StreamReader sr = new StreamReader(fileUpload.PostedFile.InputStream))
 using (FreightContext context = new FreightContext())
 {
      // Attempt to run the import
      ZoneMappingCSVImporter importer = new ZoneMappingCSVImporter(sr, context, System.Globalization.CultureInfo.CurrentUICulture);
      var items = importer.GetItems().ToList();
      importer.SaveItems(items);
      this.successBox.Value = "Import completed and added " + items.Count() + " zones mappings.";
  }

然后在我正在使用的库中注册ClassMap

 public ZoneMappingCSVImporter(TextReader textReader, FreightContext context, CultureInfo culture)
 : base(textReader, context, culture)
 {
     this.reader.Configuration.RegisterClassMap(new ZoneMappingMap(this.context));
 }

我使用上下文进行查找:

 /// <summary>
        /// Initializes a new instance of the <see cref="ZoneMap"/> class.
        /// </summary>
        public ZoneMappingMap(FreightContext context)
        {
            if (context == null)
                throw new ArgumentNullException("context");

            Map(m => m.PostcodeKey);
            Map(m => m.Zone).ConvertUsing(row =>
            {
                // Grab the name of the zone then go find this in the database
                String name = row.GetField<String>("Zone");
                return context.Zones.Where(z => String.Compare(z.Name, name, true) == 0).FirstOrDefault();
            });
        }

我在这里看不到任何奇怪的事情,我已经验证了Entity Framework生成的SQL,验证了数据库是一样的 - 我无法理解为什么会返回错误的记录。任何人都可以对此有所了解吗?

1 个答案:

答案 0 :(得分:2)

此问题的解释很可能如下:

  • 您在实体中定义复合主键的方法不正确。使用当前模型,EF仅将ZoneMapping.PostcodeKey视为主键。有关此问题的更多信息以及如何解决此问题。

  • 如果运行查询之前相应的上下文已包含resultPostcodeKey == "2214" 的实体,则会出现错误的Zone_ID == 256 。 (我猜你从来没有错过result2。)当EF从数据库加载实体时,如果上下文中已存在具有相同键的实体,它总是会查询查询。如果是,则查询的实体被丢弃,而是将附加的实体添加到结果集合中。在您的情况下,您要查询PostcodeKey == "2214"Zone_ID == 257。查询后,EF从结果行中选择主键的值。但是因为EF“认为”主键只有PostcodeKey == "2214",它会搜索带有该键值的附加实体,并找到PostcodeKey == "2214"Zone_ID == 256的实体,并将其作为结果返回给您。您永远不会遇到result2的问题,因为相应的上下文是新的且为空,因此EF将返回刚刚加载的结果,而不是任何旧的附加实体。

如果要定义复合键,则必须具有两个关键部件的标量属性。您不能使用ZoneMapping.Zone之类的导航属性作为关键部分。这意味着您必须在模型类中具有列Zone_ID的属性(除了导航属性Zone):

public class ZoneMapping
{
    public String PostcodeKey { get; set; }

    public int Zone_ID { get; set; }
    public Zone Zone { get; set; }
}

然后,为了定义带有数据注释的复合键,您必须使用@JonasJämtberg的答案中显示的Column(Order = n)属性。您还应该将ForeignKey属性应用于Zone_ID,因为下划线使属性名称为“非常规”,以便EF不会按惯例将其检测为FK:

public class ZoneMapping
{
    [Key, Column(Order = 0)]
    public String PostcodeKey { get; set; }

    [Key, ForeignKey("Zone"), Column(Order = 1)]
    public int Zone_ID { get; set; }
    public Zone Zone { get; set; }
}

EF使用此映射生成的迁移类应具有如下所示的主键定义:

.PrimaryKey(t => new { t.PostcodeKey, t.Zone_ID })

...与.PrimaryKey(t => t.PostcodeKey).PrimaryKey(t => t.Zone_ID)不一样,您尝试修复此问题但未成功。