DataAttribute.Storage 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定私用儲存欄位,以存放來自資料行的值。
public:
property System::String ^ Storage { System::String ^ get(); void set(System::String ^ value); };
public string Storage { get; set; }
member this.Storage : string with get, set
Public Property Storage As String
屬性值
儲存欄位的名稱。
範例
<Column(Storage:=_CustomerID)> _
Public CustomerID As String
[Column(Storage="_CustomerID")]
public string CustomerID
{
}
備註
記憶體屬性值會區分大小寫。 例如,請確定 Storage 屬性在 屬性中使用的值符合程式代碼中其他位置所使用之對應屬性名稱的大小寫。 這適用於所有 .NET 程式設計語言,即使是通常不區分大小寫的語言,包括 Visual Basic。