听说此问题已在 SQL Server Compact Edition 4.0 CTP 中修复
最近刚进入 SQL Server CE 和实体框架,VS2010 还不支持 SQL Server CE 4.0
我想我需要解决这个问题
我可以知道如何在实体对象的构造函数中生成整数类型的身份主键吗
public partial class Book
{
public Book()
{
// SQL Server Compact does not support entities with server-generated keys or values when it is used
// with the Entity Framework. Therefore, we need to create the keys ourselves.
Id = // Generating a Integer Identity Id here
//similar to Guid.NewGuid();
}
}
非常感谢您的帮助。