我一直在浏览youtube http://www.youtube.com/watch?v=WwmUFTWEh6Y
上的教程的早期阶段public ActionResult Update(int? id, string title, string body, DateTime dateTime, string tags)
{
if (!IsAdmin)
{
return RedirectToAction("Index");
}
Post post = GetPost(id);
post.Title = title;
post.Body = body;
post.DateTime = dateTime;
post.Tags.Clear();
tags = tags ?? string.Empty;
string[] tagNames = tags.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
foreach (string tagName in tagNames)
{
post.Tags.Add(GetTag(tagName));
}
if (!id.HasValue)
{
model.AddToPosts(post);
}
model.SaveChanges();
return RedirectToAction("Details", new { id = post.ID });
}
public ActionResult Edit(int? id)
{
Post post = GetPost(id);
StringBuilder tagList = new StringBuilder();
foreach (Tag tag in post.Tags)
{
tagList.AppendFormat("{0} ", tag.Name);
}
ViewBag.Tags = tagList.ToString();
return View(post);
}
private Tag GetTag(string tagName)
{
return model.Tags.Where(x => x.Name == tagName).FirstOrDefault() ?? new Tag() { Name = tagName };
}
private Post GetPost(int? id)
{
return id.HasValue ? model.Posts.Where(x => x.ID == id).First() : new Post() { ID = -1 };
}
我收到一个aspx错误“当IDENTITY_INSERT设置为OFF时,无法在表'帖子'中为标识列插入显式值。”我知道这是因为它试图在数据库更新时插入ID为-1而我不想这样做。如果im传入-1,它应该只创建一个新的ID吗?多数民众赞成在教程中发生。我不知道为什么我的行为不同。
=============================================== ============ 编辑 数据库是使用数据库设计器而不是通过代码创建的,虽然我查看了代码但看不到任何Autogenerated属性或IsDbGenerated属性,我在哪里插入这个?
// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmEntityTypeAttribute(NamespaceName="CollateralSystems.Models", Name="Post")]
[Serializable()]
[DataContractAttribute(IsReference=true)]
public partial class Post : EntityObject
{
#region Factory Method
/// <summary>
/// Create a new Post object.
/// </summary>
/// <param name="id">Initial value of the ID property.</param>
/// <param name="title">Initial value of the Title property.</param>
/// <param name="dateTime">Initial value of the DateTime property.</param>
/// <param name="body">Initial value of the Body property.</param>
public static Post CreatePost(global::System.Int32 id, global::System.String title, global::System.DateTime dateTime, global::System.String body)
{
Post post = new Post();
post.ID = id;
post.Title = title;
post.DateTime = dateTime;
post.Body = body;
return post;
}
#endregion
#region Primitive Properties
/// <summary>
/// No Metadata Documentation available.
/// </summary>
///
[EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)]
[DataMemberAttribute()]
public global::System.Int32 ID
{
get
{
return _ID;
}
set
{
if (_ID != value)
{
OnIDChanging(value);
ReportPropertyChanging("ID");
_ID = StructuralObject.SetValidValue(value);
ReportPropertyChanged("ID");
OnIDChanged();
}
}
}
private global::System.Int32 _ID;
partial void OnIDChanging(global::System.Int32 value);
partial void OnIDChanged();
答案 0 :(得分:0)
表ID
中的数据库列Posts
(或类似)中最有可能创建为自动生成列 - 即每当插入新记录时,Db负责为此列提供值在表中。因此,禁止显式插入此列的值(不完全正确,仍然可以,但这里不必要)。
但是,您使用的ORM系统对该列的具体内容一无所知,因此当它收到将新Posts
对象插入数据库的命令时,它会生成SQL以插入映射到该列的每个属性。列,包括ID。当然,这个SQL失败了,因为在DB中禁止插入ID值。
要解决此问题,您应该正确设置ORM。如果您使用EF或LINQ to SQL - 请查看数据库上下文,特别是Posts.ID
的属性。很可能它的AutoGenerated
属性设置为false,这是不正确的。将其设置为true,您的插入将按预期工作。
或者,您可以转到生成的DataContext
课程,在其中找到课程Posts
并确保其属性ID
具有属性IsDbGenerated
。