internal AttributeMappingTable(AttributeMapping.AttributeMappingEntity entity, TableBaseAttribute attribute)
 {
     this.entity    = entity;
     this.attribute = attribute;
 }
 private string GetTableName(MappingEntity entity, TableBaseAttribute attr)
 {
     return(((attr != null) && !string.IsNullOrEmpty(attr.Name)) ? attr.Name : entity.TableId);
 }