NotMappedAttribute.cs 290 B

123456789101112
  1. using System;
  2. namespace Ant.Entity
  3. {
  4. /// <summary>
  5. /// 该标签是用来标记不是数据库字段
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
  8. public class NotMappedAttribute : Attribute
  9. {
  10. }
  11. }