1.添加模型类:
public class Product { public int Id { get; set; } public string Name { get; set; } public string Category { get; set; } public decimal Price { get; set; } }
2.添加上下文类:
public class ProductContext : DbContext { public ProductContext() : base("DefaultConnection") { } public DbSet<Product> Products { get; set; } }
3.添加控制器类:
模板(T):包含读/写操作和视图的MVC控制器(使用 Entity Framework)
模型(M):Product (MvcApp.Models)
数据上下文(D):ProductContext (MvcApp.Models)
控制器添加完成,Views也自动生动.
注:添加控制器前要生成解决方案一次.
时间: 2024-10-12 17:09:52