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

ColumnMapping() public method

Creates a new instance of the ColumnMapping class.
public ColumnMapping ( MemberInfo property ) : System.Collections.Generic
property System.Reflection.MemberInfo The property that should be mapped
return System.Collections.Generic
        public ColumnMapping(MemberInfo property)
        {
            Property = property;
            attributes[Constants.Member] = Property.Name;
        }