Metodo DbMigration.AddPrimaryKey (String, String[], String, Boolean, Object)
[Questa pagina è specifica della versione 6 di Entity Framework. La versione più recente è disponibile come pacchetto NuGet per "Entity Framework". Per ulteriori informazioni su Entity Framework, vedere la pagina msdn.com/data/ef.]
Aggiunge un'operazione per creare una nuova chiave primaria basata su più colonne. Le API di Entity Framework Migrations non sono progettate per accettare un input fornito da origini non attendibili, ad esempio l'utente finale di un'applicazione. Se viene accettato un input da tali origini, è necessario convalidarlo prima di passarlo alle API in modo da fornire protezione dagli attacchi SQL injection e da altri tipi di attacchi.
Spazio dei nomi: System.Data.Entity.Migrations
Assembly: EntityFramework (in EntityFramework.dll)
Sintassi
'Dichiarazione
<SuppressMessageAttribute("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")> _
Protected Friend Sub AddPrimaryKey ( _
table As String, _
columns As String(), _
name As String, _
clustered As Boolean, _
anonymousArguments As Object _
)
'Utilizzo
Dim table As String
Dim columns As String()
Dim name As String
Dim clustered As Boolean
Dim anonymousArguments As Object
Me.AddPrimaryKey(table, columns, name, _
clustered, anonymousArguments)
[SuppressMessageAttribute("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
protected internal void AddPrimaryKey(
string table,
string[] columns,
string name,
bool clustered,
Object anonymousArguments
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1026:DefaultParametersShouldNotBeUsed")]
protected public:
void AddPrimaryKey(
String^ table,
array<String^>^ columns,
String^ name,
bool clustered,
Object^ anonymousArguments
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")>]
member AddPrimaryKey :
table:string *
columns:string[] *
name:string *
clustered:bool *
anonymousArguments:Object -> unit
function AddPrimaryKey(
table : String,
columns : String[],
name : String,
clustered : boolean,
anonymousArguments : Object
)
Parametri
- table
Tipo: System.String
Tabella che contiene le colonne di chiavi primarie. Il nome dello schema è facoltativo. Se non si specifica uno schema, viene usato dbo.
- columns
Tipo: System.String[]
Colonne di chiavi primarie.
- name
Tipo: System.String
Nome della chiave primaria del database. Se non si specifica un valore, verrà generato un nome univoco.
- clustered
Tipo: System.Boolean
Valore che indica se si tratta di una chiave primaria cluster.
- anonymousArguments
Tipo: System.Object
Argomenti aggiuntivi che possono essere elaborati dai provider. Usare la sintassi del tipo anonimo per specificare argomenti, ad esempio ' new { SampleArgument = "MyValue" }'.