DataAttribute.Storage 属性

定义

获取或设置私有存储字段以保存列中的值。Gets or sets a private storage field to hold the value from a column.

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

属性值

String

存储字段的名称。The name of the storage field.

示例

<Column(Storage:=_CustomerID)> _  
Public CustomerID As String   
[Column(Storage="_CustomerID")]  
public string CustomerID  
{  
}  

注解

存储属性值区分大小写。Storage property values are case sensitive. 例如,确保存储属性的属性中使用的值与代码中其他地方使用的相应属性名称的大小写匹配。For example, ensure that values used in the attribute for the Storage property match the case for the corresponding property names used elsewhere in the code. 这适用于所有 .NET 编程语言,甚至不是通常区分大小写的语言,包括 Visual Basic。This applies to all .NET programming languages, even those which are not typically case sensitive, including Visual Basic.

适用于