ASP.NET MVC企业级程序设计 (EF+三层架构+MVP实现查询数据)

目录

效果图

实现过程

1创建数据库

2创建项目文件

3创建控制器,右键添加,控制器

[​编辑 注意这里要写Home​编辑](#编辑 注意这里要写Home编辑)

创建成功

数据模型创建过程之前作品有具体过程​编辑

4创建DAL

5创建BLL

6创建视图,右键添加视图

[​编辑 7HomeController.cs代码](#编辑 7HomeController.cs代码)

8Index.cshtml代码


效果图

实现过程

1创建数据库

2创建项目文件

3创建控制器,右键添加,控制器

注意这里要写Home
创建成功
数据模型创建过程之前作品有具体过程

4创建DAL

cs 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using MvcApplication1.Models;
namespace MvcApplication1.DAL
{
    public class PersonDAL
    {
        public static List<Models.Users> Find(string name) {
            PersonDBEntities db = new PersonDBEntities();
            return db.Users.ToList().Where(x => x.Name.ToString().Contains(name)).ToList();

          
        
        }
    }
}

5创建BLL

cs 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace MvcApplication1.BLL
{
    public class PersonBLL
    {
        public static List<Models.Users> Find(string name)
        {
            return DAL.PersonDAL.Find(name);



        }
    }
}

6创建视图,右键添加视图

7HomeController.cs代码

cpp 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using MvcApplication1.Models;
namespace MvcApplication1.Controllers
{
    public class HomeController : Controller
    {
        //
        // GET: /Home/

        public ActionResult Index(string name)
        {
            if (name==null)
            {
                PersonDBEntities db = new PersonDBEntities();
                ViewData["users"] = db.Users.ToList();
            }
            else
            {
                ViewData["users"] = BLL.PersonBLL.Find(name);
            }
            ViewData["xianshi"] = name;
            return View();
        }

    }
}

8Index.cshtml代码

html 复制代码
@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
</head>
<body>
   <form method="post" action="/Home/Index">
        <label>模糊查找姓名</label> 
       <input type="text" name="name" value="@ViewData["xianshi"]" />
       <input id="Submit1" type="submit"  value="查找"/>
   </form>
              


    <div>
        <table border="1">
            <tr>
                <th>ID</th>
                 <th>姓名</th>
                 <th>年龄</th>
            </tr>
            @{
                foreach (var item in ViewData["users"] as List<MvcApplication1.Models.Users>)
                {
                     <tr>
                <td>@item.ID</td>
                 
                 <td>@item.Name</td>
                         <td>@item.Age</td>
            </tr>
                }
                
                }
        </table>
    </div>
</body>
</html>
相关推荐
2402_857589361 分钟前
SpringBoot框架:作业管理技术新解
java·spring boot·后端
一只爱打拳的程序猿20 分钟前
【Spring】更加简单的将对象存入Spring中并使用
java·后端·spring
假装我不帅2 小时前
asp.net framework从webform开始创建mvc项目
后端·asp.net·mvc
神仙别闹2 小时前
基于ASP.NET+SQL Server实现简单小说网站(包括PC版本和移动版本)
后端·asp.net
计算机-秋大田2 小时前
基于Spring Boot的船舶监造系统的设计与实现,LW+源码+讲解
java·论文阅读·spring boot·后端·vue
货拉拉技术3 小时前
货拉拉-实时对账系统(算盘平台)
后端
掘金酱3 小时前
✍【瓜分额外奖金】11月金石计划附加挑战赛-活动命题发布
人工智能·后端
代码之光_19803 小时前
保障性住房管理:SpringBoot技术优势分析
java·spring boot·后端
ajsbxi4 小时前
苍穹外卖学习记录
java·笔记·后端·学习·nginx·spring·servlet