ColumnAttribute.cs 415 B

12345678910111213141516
  1. using System;
  2. namespace Ant.Entity
  3. {
  4. [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
  5. public class ColumnAttribute : Attribute
  6. {
  7. public ColumnAttribute() { }
  8. public ColumnAttribute(string name)
  9. {
  10. this.Name = name;
  11. }
  12. public string Name { get; set; }
  13. public bool IsPrimaryKey { get; set; }
  14. }
  15. }