Tabela serwera SQL:
SomeId PK varchar(50) not null
OtherId PK int not null
Jak należy najpierw zamapować to w kodzie EF 6?
public class MyTable
{
[Key]
public string SomeId { get; set; }
[Key]
public int OtherId { get; set; }
}
Widziałem kilka przykładów, w których musisz ustawić kolejność dla każdej kolumny, czy to jest wymagane?
Czy jest gdzieś oficjalna dokumentacja na ten temat?
SomeId
astring
czy anint
?