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

SetAttribute() public method

Sets an attribute that will be generated in the XML.
public SetAttribute ( string name, string value ) : IColumnMapping
name string Name of attribute
value string value
return IColumnMapping
        public IColumnMapping SetAttribute(string name, string value)
        {
            attributes[name] = value;
            return this;
        }