我在 EF 中有一个表,其中Id
列是 PK 和Auto_Increment
. 我使用此代码向表中插入一行:
Cut newCut = new Cut()
{
Name = name,
Comments = comments
};
context.Cuts.AddObject(newCut);
context.SaveChanges();
Id
是否可以在没有其他查询 的情况下实现添加行?
我在 EF 中有一个表,其中Id
列是 PK 和Auto_Increment
. 我使用此代码向表中插入一行:
Cut newCut = new Cut()
{
Name = name,
Comments = comments
};
context.Cuts.AddObject(newCut);
context.SaveChanges();
Id
是否可以在没有其他查询 的情况下实现添加行?