MVC /实体框架编辑操作

问题描述 投票:0回答:1

我不明白为什么这个结果会一直无效。我知道数据库中存在ID 100。我正在创建可以存储到数据库中的在线表单。我希望能够通过ID将它们拉回来更新信息。

public ActionResult reviewPreevent(int? id)
{
    id = 100;
    if (id.HasValue)
    {
        using(formEntities db = new formEntities()) {
            var form = (from a in db.form_preevent
                select new preeventForm
                {
                    id = a.id,
                    meeting = a.meeting,
                    date = (DateTime)a.eventDate,
                    location = a.location,
                    p1Foyer = (bool)a.p1Foyer,
                    p2Foyer = (bool)a.p2Foyer,
                    meetingRoom = (bool)a.meetingroom,
                    skRoom = (bool)a.skroom,
                    kk1 = (bool)a.kk1,
                    kk2 = (bool)a.kk2,
                    nursery = (bool)a.nursery,
                    Sanctuary = (bool)a.sanctuary,
                    kitchen = (bool)a.kitchen,
                    parkingLot = (bool)a.parkinglot,
                    mainLeaders = a.mainleaders,
                    helpers = a.helpers,
                    backup = a.backuphelps,
                    soundboard = (bool)a.soundboard,
                    soundboardtech = a.soundboardtech,
                    projector = (bool)a.projector,
                    projectorOp = a.projectorop,
                    camera = (bool)a.camera,
                    cameraops = a.cameraops,
                    livestream = (bool)a.livestream,
                    ushers = (bool)a.ushers,
                    totalUshers = (int)a.totalushers,
                    greeters = (bool)a.greeters,
                    totalGreeters = (int)a.totalgreeters,
                    security = (bool)a.security,
                    setupTime = (DateTime)a.setuptime,
                    setup = a.setup,
                    breakdown = a.breakdown,
                    foodItems = a.fooditems,
                    groceryShoppers = a.groceryshoppers,
                    foodPrepPersonal = a.foodprep,
                    estExpense = (float)a.estexpense,
                    estIncome = (float)a.estincome,
                    expense = (float)a.expense,
                    income = (float) a.income
                }).Where(t => t.id == id).FirstOrDefault();
            return View();
        }
    }else
    {
        TempData["notice"] = "No form with ID: " + id + " was found.";
        return View();
    }
}

还有一种更简单的方法将sql类与viewmodels类相匹配吗?

c# asp.net-mvc entities
1个回答
1
投票

你是如此亲密。将View返回到客户端时,必须返回Form变量。

public ActionResult reviewPreevent(int? id)
{
    id = 100;
    if (id.HasValue)
    {
        using(formEntities db = new formEntities()) {
            var form = (from a in db.form_preevent
                select new preeventForm
                {
                    id = a.id,
                    meeting = a.meeting,
                    date = (DateTime)a.eventDate,
                    location = a.location,
                    p1Foyer = (bool)a.p1Foyer,
                    .
                    .
                    .
                    income = (float) a.income
                }).Where(t => t.id == id).FirstOrDefault();
            return View(form);  //THIS LINE MODIFIED
        }
    }else
    {
        TempData["notice"] = "No form with ID: " + id + " was found.";
        return View();
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.