FluentLinqToSql.Mappings.ColumnMapping.Storage C# (CSharp) Method

Storage() public method

Specifies that Linq to Sql should bypass the public property and use the specified field directly.
public Storage ( string fieldName ) : IColumnMapping
fieldName string Name of field that the column should be mapped to
return IColumnMapping
        public IColumnMapping Storage(string fieldName)
        {
            return SetAttribute(Constants.Storage, fieldName);
        }