ColumnAttribute.AutoSync Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit l'énumération AutoSync.
public:
property System::Data::Linq::Mapping::AutoSync AutoSync { System::Data::Linq::Mapping::AutoSync get(); void set(System::Data::Linq::Mapping::AutoSync value); };
public System.Data.Linq.Mapping.AutoSync AutoSync { get; set; }
member this.AutoSync : System.Data.Linq.Mapping.AutoSync with get, set
Public Property AutoSync As AutoSync
Valeur de propriété
Valeur de AutoSync.
Exemples
[Column(Storage="_EmployeeID", AutoSync=AutoSync.OnInsert, DbType="Int NOT NULL IDENTITY", IsPrimaryKey=true, IsDbGenerated=true)]
public int EmployeeID
{
get
{
return this._EmployeeID;
}
set
{
if ((this._EmployeeID != value))
{
this.OnEmployeeIDChanging(value);
this.SendPropertyChanging();
this._EmployeeID = value;
this.SendPropertyChanged("EmployeeID");
this.OnEmployeeIDChanged();
}
}
}
<Column(Storage:="_EmployeeID", DbType:="Int", AutoSync:=AutoSync.OnInsert)> _
Public Property EmployeeID() As System.Nullable(Of Integer)
Get
Return Me._EmployeeID
End Get
Set(ByVal value As System.Nullable(Of Integer))
If (Me._EmployeeID.Equals(value) = False) Then
If Me._Employee.HasLoadedOrAssignedValue Then
Throw New System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException
End If
Me.OnEmployeeIDChanging(value)
Me.SendPropertyChanging()
Me._EmployeeID = value
Me.SendPropertyChanged("EmployeeID")
Me.OnEmployeeIDChanged()
End If
End Set
End Property
S’applique à
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.