ModelContext +“查询”什么都不返回

时间:2013-05-13 05:47:21

标签: asp.net-mvc-4

我是ASP.NET MVC4的初学者。

我已经在我的数据库中创建了一个带有表格的模型。我在桌子上有两个条目。

我尝试在控制器中发送一个条目,但我的modelcontext返回null。这是我的代码:

我的控制器:

enter code herepublic class HomeController : Controller
{
    //connection à la table
    private AnnonceModelContext db = new AnnonceModelContext();

    public ActionResult Index()
    {
        AnnonceModel last_annonce = db.Annonces.Find(2);
        if (last_annonce == null)
        {
            ViewBag.Message = "Pas d'annonce pour le moment";
            return View();
        }
        else
        {
            return View(last_annonce);
        }
    }

我的观点:

@model wiki_bird.Models.AnnonceModel
<section id="annonce" class="content-wrapper">
        <h1>Annonce</h1>
        <p>
           @ViewBag.Message
            <br />
           @Html.DisplayFor(model => model.titre)
        </p>
    </section>

last_annonce总是为null然后我的表&#34; Annonce&#34;在我的数据库中不是空的!

我希望你能帮助我!抱歉我的英语不好我不是英语。

此致

寿司

0 个答案:

没有答案