Compartir a través de


EventFieldCollection.Add Method (EventField, String)

Adds an EventField before the specified EventFieldCollection.

Espacio de nombres: Microsoft.SqlServer.Management.Nmo
Ensamblado: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Sintaxis

'Declaración
Public Sub Add ( _
    eventField As EventField, _
    insertAtColumnName As String _
)
public void Add (
    EventField eventField,
    string insertAtColumnName
)
public:
void Add (
    EventField^ eventField, 
    String^ insertAtColumnName
)
public void Add (
    EventField eventField, 
    String insertAtColumnName
)
public function Add (
    eventField : EventField, 
    insertAtColumnName : String
)

Parámetros

  • eventField
    The EventField to add to the collection.
  • insertAtColumnName
    A String that specifies name of the event field column before which to insert the EventField.

Notas

Each EventField must have a unique name.

You add each EventField before a named field in the collection. The event field at the specified column, and all subsequent event fields, are moved down the list of event fields.

The order of the fields is maintained.

If you add event fields to an application after deploying the application, you must Update the instance to apply the changes.

Ejemplo

The following examples show how to define an event field and then add it to an event class before a specific event field:

// Define a destination field and add it before the Price field
EventField eventDestination = 
    new EventField(flightEvents, "GoingTo");
eventDestination.Type = "nvarchar(6)";
flightEvents.EventFields.Add(eventDestination, "Price");
' Define a destination field and add it before the Price field.
Dim eventDestination As EventField = _
    New EventField(flightEvents, "GoingTo")
eventDestination.Type = "nvarchar(6)"
flightEvents.EventFields.Add(eventDestination, "Price")

Seguridad para subprocesos

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Plataformas

Plataformas de desarrollo

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Plataformas de destino

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Vea también

Referencia

EventFieldCollection Class
EventFieldCollection Members
Microsoft.SqlServer.Management.Nmo Namespace

Otros recursos

Definir propiedades principales de clase de evento
Field Element for EventClass/Schema (ADF)