ColumnAttribute.AutoSync プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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
プロパティ値
AutoSync 値。
例
[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
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET