使用mvc+ef从数据库中读取树形菜单自己写的小例子

本文提供了一个使用Mvc和Entity Framework(Ef)从数据库读取并构建树形菜单的简单示例。主要涉及TB_MenuList类的定义,包含ID、Title、ParentID等属性,以及TB_MenuListDBContext作为DbContext子类的数据访问层。
摘要由CSDN通过智能技术生成
Models页面代码:

public class TB_MenuList
{
/// <summary>
/// 主键
/// </summary>
public int ID { get; set; }
/// <summary>
/// 菜单标题
/// </summary>
public string Title { get; set; }
/// <summary>
/// 菜单英文标题(备用)
/// </summary>
public string Title_Eng { get; set; }
/// <summary>
/// 用户可见权限(0代表无需无权限)
/// </summary>
public int DisplayPermission { get; set; }
/// <summary>
/// 父级ID(用来保存上一节点ID,0代表顶级)
/// </summary>
public int ParentID { get; set; }
/// <summary>
/// 菜单链接地址
/// </summary>
public string URL { get; set; }
/// <summary>
/// 是否在新页面打开
/// </summary>
public int IsNewPage { get; set; }

}

public class TB_MenuListDBContext : DbContext
{
public DbSet<TB_MenuList> TB_MenuList { get; set; }
}

controllers页面:

private TB_MenuListDBContext db = new TB_MenuListDBContext();

//
// GET: /TB_MenuList/

public ActionResult Index()
{
return View(db.TB_MenuList.ToList());
}


//
// GET: /TB_MenuList/Details/5

public ActionResult Details(int id = 0)
{
TB_MenuList tb_menulist = db.TB_MenuList.Find(id);
if (tb_menulist == null)
{
return HttpNotFound();
}
return View(tb_menulist);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值