Specifies what physical store type should be used to store this property.
Namespace: Composite.DataAssembly: Composite (in Composite.dll) Version: 5.3.6135.33083
Syntax
Examples
This sample shows how to use the StoreFieldType attribute.
Here a string field with a maximum of 40 characters.
CopyC#

// data interface attributes ... interface IMyDataType : IData { [StoreFieldType(PhysicalStoreFieldType.String, 40)] [ImmutableFieldId("{D75EA67F-AD14-4BAB-8547-6D87002809F1}")] string ProductName { get; set; } // more data properties ... }