// Private Methods (2) 

        private Action <IIdMapper> CreateIdMapperAction(TMColumnAttribute attrib)
        {
            return(new Action <IIdMapper>((mapper) =>
            {
                mapper.Column(attrib.Name);
            }));
        }
 private Action <IPropertyMapper> CreatePropertyMapperAction(TMColumnAttribute attrib)
 {
     return(new Action <IPropertyMapper>((mapper) =>
     {
         mapper.Column(attrib.Name);
         mapper.NotNullable(!attrib.IsNullable);
     }));
 }