摘要:
--做一个类似下拉的功能条件 @foreach (var item in ViewBag.type) { <a href="/Info/Show?tid=@item.TId&Name=@Request["Name"]">@item.TName</a> } <a href="/Info/Show">全 阅读全文
摘要:
超级细致体验版本 1--首先在Model层创建我们需要的字段和表 [Table("Info")] public class InfoModel { [Key] public int Id { get; set; } public string Type { get; set; } public st 阅读全文
摘要:
--添加方法(后端) 1、Model层添加字段属性 [Table("Student")] public class Student { [Key] public int SId { get; set; } public string SName { get; set; } public string 阅读全文
摘要:
创建框架 一、新建Models 中实体类 在类中添加特性,添加特性之前需要引用命名空间 using System.ComponentModel.DataAnnotations;using System.ComponentModel.DataAnnotations.Schema; 1、类的上边 [Ta 阅读全文