我正在尝试在我的 Windows Phone 7 应用程序中创建本地 SQL Server CE 数据库。
这是 Employee 类,它包含字段的属性,这些字段是用于构建数据库的表和列
我想要:
EmployeeID
将from的类型更改int
为uniqueidentifier
和- 使它成为主键,但我不知道如何。
错误:
uniqueidentifier
无法识别(我是否缺少图书馆参考资料?)
namespace F5debugWp7LocalDatabase
{
[Table]
public class Employee
{
public int EmployeeID
{
get;
set;
}
[Column(CanBeNull = false)]
public string EmployeeName
{
get;
set;
}
[Column(CanBeNull = false)]
public string EmployeeAge
{
get;
set;
}
}
}