我的数据库中有一个表。
此表有一个名为 A 的列,该列不是实体或自动编号、唯一键或...
我使用 Entity Framework 4.1 从我的数据库创建了一个模型。
我的代码
using (var contex = new testEntities())
{
Table_1 t = new Table_1();
t.A = 1;
contex.Table_1.Add(t);
contex.SaveChanges();
}
我不想在我的表中使用身份号码或索引。当我想在其中插入一行时,它给了我这个错误:
Unable to update the EntitySet 'Table_1' because it has a DefiningQuery and no
<InsertFunction> element exists in the <ModificationFunctionMapping> element to
support the current operation.