Exemplo n.º 1
0
 private void ShouldIgnoreProperty(IPropertyIgnorer property)
 {
     property.IgnoreProperties(p => p.MemberInfo.HasAttribute<DoNotMapAttribute>());
 }
Exemplo n.º 2
0
 private void ShouldIgnoreProperty(IPropertyIgnorer property)
 {
     property.IgnoreProperties(p => p.MemberInfo.HasAttribute <DoNotMapAttribute>());
 }
 /// <summary>
 /// Ignore a single property.
 /// Property marked with this attributes will no be persisted to table.
 /// </summary>
 /// <param name="p">IPropertyIgnorer</param>
 /// <param name="propertyType">The type to ignore.</param>
 /// <returns>The property to ignore.</returns>
 public static IPropertyIgnorer SkipProperty(this IPropertyIgnorer p, Type propertyType)
 {
     return(p.IgnoreProperties(x => x.MemberInfo.GetCustomAttributes(propertyType, false).Length > 0));
 }