3

我首先遇到了 EF 代码的问题

当我尝试将新记录插入表中时,我收到消息。

Cannot insert explicit value for identity column in table '' when IDENTITY_INSERT is set to OFF.

知道为什么我会收到错误吗?

我正在使用以下代码:

 public void SaveNewResponse()
    {
        using (var context = new Context())
        {
            var newResponse = new Response()
                {
                    lngRequestLineID = 1001233,
                    memXMLResponse = "test Response",
                    fAdhoc = false,
                };
            context.tblResponses.Add(newResponse);
            context.SaveChanges();
        }
    }

这是我的映射

 public class tblResponsMap : EntityTypeConfiguration<tblRespons>
{
    public tblResponsMap()
    {
        // Primary Key
        this.HasKey(t => new { t.lngResponseLineID});

        // Properties
        this.Property(t => t.lngResponseLineID)
            .HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);

        this.Property(t => t.lngRequestLineID);

                 // Table & Column Mappings
        this.ToTable("tblResponses");
        this.Property(t => t.lngResponseLineID).HasColumnName("lngResponseLineID");
        this.Property(t => t.lngRequestLineID).HasColumnName("lngRequestLineID");
        this.Property(t => t.fAdhoc).HasColumnName("fAdhoc");
        this.Property(t => t.memXMLResponse).HasColumnName("memXMLResponse");

    }
}
4

3 回答 3

3

好的,我找到了。数据库已正确设置,但我的映射不正确。

public class tblResponsMap : EntityTypeConfiguration<tblRespons>
{
public tblResponsMap()
{
    // Primary Key
    this.HasKey(t => new { t.lngResponseLineID});

    // Properties
    this.Property(t => t.lngResponseLineID)
        .HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity); <-- here

    this.Property(t => t.lngRequestLineID);

    // Table & Column Mappings
    this.ToTable("tblResponses");
    this.Property(t => t.lngResponseLineID).HasColumnName("lngResponseLineID");
    this.Property(t => t.lngRequestLineID).HasColumnName("lngRequestLineID");
    this.Property(t => t.fAdhoc).HasColumnName("fAdhoc");
    this.Property(t => t.memXMLResponse).HasColumnName("memXMLResponse");
}
}
于 2012-09-20T09:21:35.860 回答
0

当我通过将关系指向在当前上下文之外获取且不再被跟踪的实体模型来添加与 EF 核心实体模型的关系时,我遇到了这个错误。我这样做是为了避免最初让我感到尴尬的额外读取操作。

public static void AddMatches(List<Match> matches, Profile p)
{
    using (var db = new DbContext())
    {
        foreach (var match in matches)
        {
            match.Profile = p;
            db.Match.Add(match);
        }
        db.SaveChanges();
    }
}

我通过执行另一个读取操作来解决它。在咨询了 Microsoft 文档Here之后,我确信这是相对正常的,尤其是在 MVC 世界中。使固定:

public static void AddMatches(List<Match> matches, Profile p)
{
    using (var db = new DbContext())
    {
        var profile = db.Profile.Find(p.ProfileId);
        foreach (var match in matches)
        {
            match.Profile = profile;
            db.Match.Add(match);
        }
        db.SaveChanges();
    }
}
于 2021-05-12T17:57:08.400 回答
0

您不需要更改映射代码,而是应该更改此行:

lngRequestLineID = 1001233

对此:

lngRequestLineID = 0

在我的过期中,用 [KeyAttribute] 装饰 de Id 实体的属性就足够了。

于 2019-10-25T00:18:34.863 回答