- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Repository
- {
- //[Table("Table")] //如果表名和类不一样,[Table("表名")]
- public class Table
- {
- public int Id { get; set; }
- public string Name { get; set; }
- }
- }
|