コード例 #1
0
 /// <summary>
 /// Adds attribute to current mapping member.
 /// </summary>
 /// <param name="attribute">Mapping attribute to add to specified member.</param>
 /// <returns>Returns current column or association mapping builder.</returns>
 public PropertyMappingBuilder <T> HasAttribute(Attribute attribute)
 {
     _entity.HasAttribute(_memberInfo, attribute);
     return(this);
 }