Condividi tramite


Metodo DbMigration.RenameColumn

[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 rinominare una colonna. 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 RenameColumn ( _
    table As String, _
    name As String, _
    newName As String, _
    anonymousArguments As Object _
)
'Utilizzo
Dim table As String 
Dim name As String 
Dim newName As String 
Dim anonymousArguments As Object 

Me.RenameColumn(table, name, newName, _
    anonymousArguments)
[SuppressMessageAttribute("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
protected internal void RenameColumn(
    string table,
    string name,
    string newName,
    Object anonymousArguments
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1026:DefaultParametersShouldNotBeUsed")]
protected public:
void RenameColumn(
    String^ table, 
    String^ name, 
    String^ newName, 
    Object^ anonymousArguments
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")>]
member RenameColumn : 
        table:string * 
        name:string * 
        newName:string * 
        anonymousArguments:Object -> unit
function RenameColumn(
    table : String, 
    name : String, 
    newName : String, 
    anonymousArguments : Object
)

Parametri

  • table
    Tipo: System.String
    Nome della tabella che contiene la colonna da rinominare. Il nome dello schema è facoltativo. Se non si specifica uno schema, viene usato dbo.
  • 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" }'.

Vedere anche

Riferimento

DbMigration Classe

Spazio dei nomi System.Data.Entity.Migrations