//Index.cshtml

@model IQueryable<MvcExam2.Models.Product>
@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
</head>
<body>
    <div>
        @Html.ActionLink("添加", "Add", "ProductCrud")
    </div>
    <div> 
        <table>
            <tr>
                <th>ModelNumber</th>
                <th>ModelName</th>
                <th>UnitCost</th>
                <th>修改</th>
                <th>删除</th>
            </tr>
            @foreach(MvcExam2.Models.Product p in Model)
            {
                <tr>
                    <td>@p.ModelNumber</td>
                    <td>@p.ModelName</td>
                    <td>@p.UnitCost</td>
                    <td>@Html.ActionLink("修改", "Update", "ProductCrud",new RouteValueDictionary(new { id = @p.ProductID }),null)</td>
                    <td>@Html.ActionLink("删除","Delete","ProductCrud", new RouteValueDictionary(new { id = @p.ProductID }), null)</td>
                </tr>
            }
        </table>
    </div>
</body>

</html>

//Add.cshtml

@model MvcExam2.Models.Product
@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Add</title>
</head>
<body>
    <div> 
        @using (Html.BeginForm("Add", "ProductCrud", FormMethod.Post))
        {
            <span>ModelNumber:</span>@Html.TextBoxFor(p => p.ModelNumber);<br />
            <span>ModelName:</span>@Html.TextBoxFor(p => p.ModelName);<br />
            <span>UnitCost:</span>@Html.TextBoxFor(p=>p.UnitCost);<br />
            <input type="submit" name="name" value="submit" />
        }
    </div>
</body>

</html>

//Update.cshtml

@model MvcExam2.Models.Product
@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Update</title>
</head>
<body>
    <div> 
        @using (Html.BeginForm("Update", "ProductCrud", FormMethod.Post))
        {
            @Html.HiddenFor(p=>p.ProductID)
            <span>ModelNumber:</span>@Html.TextBoxFor(p => p.ModelNumber) <br />
            <span>ModelName:</span>@Html.TextBoxFor(p => p.ModelName) <br />
            <span>UnitCost:</span>@Html.TextBoxFor(p => p.UnitCost) <br />
            <input type="submit" name="name" value="submit" />
        }
    </div>
</body>
</html>

//ProductCrudController

using MvcExam2.Models;
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Data.Entity.Migrations;

namespace MvcExam2.Controllers
{
    public class ProductCrudController : Controller
    {
        DbContext context = new StoreContext();
        // GET: ProductCrud
        public ActionResult Index()
        {
            IQueryable<Product> list = context.Set<Product>();
            return View(list);
        }

        public ActionResult Add()
        {
            return View();
        }

        [HttpPost]
        public ActionResult Add(Product p)
        {
            p.CategoryID = 14;
            //第一种方法:用curd方法
            //context.Set<Product>().Add(p);
            
            //第二种方法:用状态跟踪
            context.Set<Product>().Attach(p);
            context.Entry(p).State = EntityState.Added;
            int result = context.SaveChanges();
            if (result>0)
            {
                return Redirect(Url.Action("Index"));
            }
            else
            {
                return Redirect(Url.Action("Error"));
            }
           
        }

        public ActionResult Update(int id)
        {
            ViewData.Model= context.Set<Product>().Where(p => p.ProductID == id).FirstOrDefault();
            return View();
        }

        [HttpPost]
        public ActionResult Update(Product p)
        {
            p.CategoryID = 14;
            //第一种方法:用curd方法
            // context.Set<Product>().AddOrUpdate(p);//需要引用System.Data.Entity.Migrations;

            //第二种方法:用状态跟踪
            context.Set<Product>().Attach(p);
            context.Entry(p).State = EntityState.Modified;
            int result = context.SaveChanges();
            if (result > 0)
            {
                return Redirect(Url.Action("Index"));
            }
            else
            {
                return Redirect(Url.Action("Error"));
            }
           
        }

        public ActionResult Delete(int id)
        {
           var product= context.Set<Product>().Where(p => p.ProductID == id).FirstOrDefault();
            //第一种方法:用curd方法
            //context.Set<Product>().Remove(obj);

            //第二种方法:用状态跟踪
            context.Set<Product>().Attach(product);
            context.Entry(product).State = EntityState.Deleted;
            int result = context.SaveChanges();
            if (result > 0)
            {
                return Redirect(Url.Action("Index"));
            }
            else
            {
                return Redirect(Url.Action("Error"));
            }
        }

        public ActionResult Error()
        {
            return View();
        }
    }
}

MVC CRUD 的两种方法的更多相关文章

  1. ASP.NET MVC 实现AJAX跨域请求的两种方法

    通常发送AJAX请求都是在本域内完成的,也就是向本域内的某个URL发送请求,完成部分页面的刷新.但有的时候需要向其它域发送AJAX请求,完成数据的加载,例如Google. 在ASP.NET MVC 框 ...

  2. .NET MVC中登录过滤器拦截的两种方法

    今天给大家介绍两种ASP中过滤器拦截的两种方法. 一种是EF 的HtppModule,另一种则是灵活很多针对MVC的特性类 Attribute 具体什么是特性类可以参考着篇文章:https://www ...

  3. C# web api 返回类型设置为json的两种方法

    每次写博客,第一句话都是这样的:程序员很苦逼,除了会写程序,还得会写博客!当然,希望将来的一天,某位老板看到此博客,给你的程序员职工加点薪资吧!因为程序员的世界除了苦逼就是沉默.我眼中的程序员大多都不 ...

  4. windows下获取IP地址的两种方法

    windows下获取IP地址的两种方法: 一种可以获取IPv4和IPv6,但是需要WSAStartup: 一种只能取到IPv4,但是不需要WSAStartup: 如下: 方法一:(可以获取IPv4和I ...

  5. android 之 启动画面的两种方法

    现在,当我们打开任意的一个app时,其中的大部分都会显示一个启动界面,展示本公司的logo和当前的版本,有的则直接把广告放到了上面.启动画面的可以分为两种设置方式:一种是两个Activity实现,和一 ...

  6. [转载]C#读写txt文件的两种方法介绍

    C#读写txt文件的两种方法介绍 by 大龙哥 1.添加命名空间 System.IO; System.Text; 2.文件的读取 (1).使用FileStream类进行文件的读取,并将它转换成char ...

  7. php如何防止图片盗用/盗链的两种方法(转)

    图片防盗链有什么用? 防止其它网站盗用你的图片,浪费你宝贵的流量.本文章向大家介绍php防止图片盗用/盗链的两种方法 Apache图片重定向方法 设置images目录不充许http访问 Apache服 ...

  8. WPF程序将DLL嵌入到EXE的两种方法

    WPF程序将DLL嵌入到EXE的两种方法 这一篇可以看作是<Visual Studio 版本转换工具WPF版开源了>的续,关于<Visual Studio 版本转换工具WPF版开源了 ...

  9. MongoDB实现分页(两种方法)

    1.插入实验数据 偷懒用下samus,100条. ; i < ; i++) { Document doc = new Document(); doc["ID"] = i; d ...

随机推荐

  1. [JS Compose] 5. Create types with Semigroups

    An introduction to concatting items via the formal Semi-group interface. Semi-groups are simply a ty ...

  2. Windows Phone 8.1 控件

    如果你已经开始了 Windows Phone 8.1 的学习,就会发现许多在 8.0 下的控件在 8.1 中都发生了变化,以下就谈谈几个 8.1 下的新控件以及与 8.0 控件的改变. 1. Text ...

  3. api的管理工具

    一.常用的api管理工具和测试的方法 1.postman 2.Yapi 3.swagger 4.Rap(阿里)

  4. java中<T> T和T的区别?

    如果你希望 getMax 方法的返回值类型为 T,就要这样去定义getMax方法: public T getMax() 如果你希望 getMax 方法返回值的类型由调用者决定,那么就这么去定义 get ...

  5. 两分钟读懂ThreadLocal

    ThreadLocal的工作原理 场景 假设一个用户是一个线程.他们都对数据库进行操作,这个时候就会每个用户就会从数据源中开启一个事务以确保能够顺利的打开或者关闭事务.那么如何保证用户与用户之间的数据 ...

  6. Fiddler快速入门(还有一个功能就是不经过网络,直接模拟一个响应返回给客户端)

    Fiddler是一个免费.强大.跨平台的HTTP抓包工具.Wireshark也是一个强大的抓包工具,不过Wireshark是一个通用的抓包工具,主要精力放在各种协议上了,针对HTTP的特定功能较少.所 ...

  7. expdp备份速度慢的问题

    --出口分析 --两个时间报表分析,该声明仅出口4,059,292  数据,10之后分钟数据没有继续出口              Snap Id  Snap Time  Sessions  Curs ...

  8. WPF多线程UI更新

    前言 在WPF中,在使用多线程在后台进行计算限制的异步操作的时候,如果在后台线程中对UI进行了修改,则会出现一个错误:(调用线程无法访问此对象,因为另一个线程拥有该对象.)这是很常见的一个错误,一不小 ...

  9. Distributed Symmetric Multiprocessing Computing Architecture

    Example embodiments of the present invention includes systems and methods for implementing a scalabl ...

  10. 《Java并发编程实战》第十二章 测试并发程序 读书笔记

    并发测试分为两类:安全性测试(无论错误的行为不会发生)而活性测试(会发生). 安全測试 - 通常採用測试不变性条件的形式,即推断某个类的行为是否与其它规范保持一致. 活跃性測试 - 包含进展測试和无进 ...