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

Named() public method

Specifies the name of the column to which the property should be mapped.
public Named ( string name ) : IColumnMapping
name string The name
return IColumnMapping
        public IColumnMapping Named(string name)
        {
            name.Guard("A name must be specified when calling 'Named'");
            return SetAttribute(Constants.Name, name);
        }