2

在数据库中添加对象时出现异常(我目前正在使用的 Sqlite)。

例外:元数据集合中不存在身份为 '' 的成员。参数名称:身份

通常这段代码可以在我的本地运行,但我也想在我的上网本上运行这个项目,但无论我做什么,我都找不到让它运行的方法。

任何帮助将不胜感激。

   -- Original table schema
    CREATE TABLE [Content] (
        [Id] integer PRIMARY KEY AUTOINCREMENT NOT NULL,
        [Title] text NOT NULL,
        [Content] text NOT NULL,
        [PageId] integer NOT NULL,
        [CreatedAt] datetime,
        [UpdatedAt] datetime,
        [CreatedBy] text,
        [UpdatedBy] text,
        CONSTRAINT [FK_Content_PageId_Page_Id] FOREIGN KEY ([PageId]) REFERENCES [Page] ([Id])
    );
    -- Original table schema
    CREATE TABLE [Page] (
        [Id] integer PRIMARY KEY AUTOINCREMENT NOT NULL,
        [Title] text NOT NULL,
        [Url] text NOT NULL,
        [Visibility] bit NOT NULL,
        [CreatedAt] datetime,
        [UpdatedAt] datetime,
        [CreatedBy] text,
        [UpdatedBy] text
    );



    using (var entities = new PageEntities())
                {
                    var page = entities.Pages.FirstOrDefault(p => p.Id == id);
                    if (page != null)
                    {
                        var content = new Content
                                          {
                                              Title = model.Title,
                                              Explanation = model.Explanation,
                                              CreatedAt = DateTime.Now,
                                              UpdatedAt = DateTime.Now,
                                              PageId = page.Id
                                          };
                        entities.AddToContents(content);
                        entities.SaveChanges();
                        return RedirectToAction("PageContent/" + id, "Admin");


        }
4

0 回答 0