TestTable.cs 382 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Repository
  8. {
  9. //[Table("Table")] //如果表名和类不一样,[Table("表名")]
  10. public class Table
  11. {
  12. public int Id { get; set; }
  13. public string Name { get; set; }
  14. }
  15. }