1

使用 MVC4,我在将新行插入数据库(SQL Compact)时遇到了一些麻烦。我正在从原始文本(制表符分隔)构建行,如下所示:

                while (reader.Peek() != -1)
            {
                newRow = Cos.Create();
                line = reader.ReadLine().Split('\t');
                for (int i = 0; i < header.Count(); i++)
                {
                    switch (header[i])
                    {
                        case "CompanyName":
                            newRow.CompanyName = line[i];
                            break;
                        case "City":
                            newRow.City = line[i];
                            break;
                        case "Country":
                            newRow.Country = line[i];
                            break;
                        default:
                            return "A column was found with an unacceptable value - " + header[i] + " - No changes have been made.";
                    }
                }
                this.Cos.Add(newRow);
            }
        this.SaveChanges();

我的表有一个 Id 列,设置为:int、Unique、Primary Key 和 Identity (seed:1, increment:1)。问题是 SQL 拒绝了“this.SaveChanges()”生成的语句,因为我生成的所有行的 Id 值都是 0。

有没有办法让 SQL 在插入时为每一行分配一个唯一的 ID?我的理解是,这就是身份的目的。

我的模型看起来像这样:

public class CoDB{
        public string CompanyName { get; set; }
        public string City { get; set; }
        public string Country { get; set; }
        public int Id { get; set; }
}

CoDBContext 定义:

public DbSet<CoDB> Cos {get; set;}

非常感谢您的帮助!-扎克

4

1 回答 1

0

听起来您试图设置自动标识字段的值,但您不应该这样做。看看这是否有帮助:Autonumber with Entity Framework

于 2012-10-04T03:58:42.000 回答