EF Code First 给我错误当 IDENTITY_INSERT 设置为 OFF 时,无法为表 'People' 中的标识列插入显式值. [英] EF Code First giving me error Cannot insert explicit value for identity column in table 'People' when IDENTITY_INSERT is set to OFF.

查看:46
本文介绍了EF Code First 给我错误当 IDENTITY_INSERT 设置为 OFF 时,无法为表 'People' 中的标识列插入显式值.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在试用 Entity Framework 4 的 Code First (EF CodeFirst 0.8),但遇到了一个简单模型的问题,该模型在 Person 0..1 关系code> 和 Profile.以下是它们的定义:

I'm trying out Entity Framework 4's Code First (EF CodeFirst 0.8) and am running into a problem with a simple model that has a 1 <--> 0..1 relationship, between Person and Profile. Here's how they're defined:

public class Person
{
    public int PersonId { get; set; }

    public string FirstName { get; set; }
    public string LastName { get; set; }
    public DateTime? DOB { get; set; }

    public virtual Profile Profile { get; set; }
}

public class Profile
{
    public int ProfileId { get; set; }
    public int PersonId { get; set; }
    public string DisplayName { get; set; }

    public virtual Person Person { get; set; }
}

数据库上下文如下所示:

The DB context looks like this:

public class BodyDB : DbContext
{
    public DbSet<Person> People { get; set; }   
}

我没有为 Profile 定义 DbSet 因为我认为 People 是它的聚合根.当我尝试添加一个新的 Person - 即使一个没有 Profile 的代码:

I didn't define a DbSet for Profile because I consider People to be its aggregate root. When I try to add a new Person - even one without a Profile with this code:

public Person Add(Person newPerson)
{
    Person person = _bodyBookEntities.People.Add(newPerson);
    _bodyBookEntities.SaveChanges();
    return person;
}

我收到以下错误:

当 IDENTITY_INSERT 设置为 OFF 时,无法为表 'People' 中的标识列插入显式值.

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

当我调用 People.Add() 时,newPerson 对象的 PersonId 属性有一个 0.数据库表是PeopleProfiles.PersonIdPeople 的PK,是一个自增的Identity.ProfileIdProfiles 的 PK,是一个自动增强的 Identity.PersonIdProfiles 的非空 int 列.

The newPerson object has a 0 for the PersonId property when I call People.Add(). The database tables are People and Profiles. PersonId is the PK of People and is an auto-increment Identity. ProfileId is the PK of Profiles and is an auto-incement Identity. PersonId is a non-null int column of Profiles.

我做错了什么?我想我遵守了 EF Code First 的所有约定,而不是配置规则.

What am I doing wrong? I think I'm adhering to all the EF Code First's convention over configuration rules.

推荐答案

我收到以下错误:当 IDENTITY_INSERT 设置为 OFF 时,无法为表 'People' 中的标识列插入显式值.

I get the following error: Cannot insert explicit value for identity column in table 'People' when IDENTITY_INSERT is set to OFF.

我认为 IDENTITY_INSERT 是关闭的自动增量功能.所以,检查数据库中的字段PersonId,看看它是否是一个身份.

I think that the IDENTITY_INSERT is the Auto Increment functionality which is off. So, check the field PersonId in the database to see if it is an identity.

此外,也许这也能解决您的问题.

Besides, maybe this will fix your problem too.

[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int PersonId { get; set; }

这篇关于EF Code First 给我错误当 IDENTITY_INSERT 设置为 OFF 时,无法为表 'People' 中的标识列插入显式值.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆