最佳答案
Sql 服务器表:
SomeId PK varchar(50) not null
OtherId PK int not null
我应该如何映射这在 EF6代码第一?
public class MyTable
{
[Key]
public string SomeId { get; set; }
[Key]
public int OtherId { get; set; }
}
我看过一些例子,你必须为每一列设置顺序,这是必需的吗?
这上面有官方文件吗?