DataAttribute.Storage Property

Definition

Gets or sets a private storage field to hold the value from a column.

C#
public string Storage { get; set; }

Property Value

The name of the storage field.

Examples

C#
[Column(Storage="_CustomerID")]  
public string CustomerID  
{  
}  

Remarks

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. This applies to all .NET programming languages, even those which are not typically case sensitive, including Visual Basic.

Applies to

Product Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1