ASP.NET MVC 3 (Accessing your Model’s Data from a Controller) (5/9)

來源:互聯網
上載者:User
文章目錄
  • Accessing your Model's Data from a Controller
  • Creating a Connection String and Working with SQL Server Express
Accessing your Model's Data from a Controller

In this section, you'll create a new MoviesController class and write code that retrieves the movie data and displays it in the browser using a view template.

Right-click the Controllers folder and make a new MoviesController class.

This creates a new MoviesController.cs file in the project's Controllers folder. Let's update the Index action method in the MoviesController class so that is retrieves the list of movies. Don't forget to include a using statement for the MvcMovie.Models namespace.

using System; using System.Linq; using System.Web.Mvc;  using MvcMovie.Models;  // Required in order to access MovieDBContext.  namespace MvcMovie.Controllers  {     public class MoviesController : Controller      {         MovieDBContext db = new MovieDBContext();          public ActionResult Index() {             var movies = from m in db.Movies                          where m.ReleaseDate > new DateTime(1984, 6, 1)                          select m;              return View(movies.ToList());         }     } }

The code is performing a LINQ query to retrieve only movies that were released after the summer of 1984. We'll need a view template to render this list of movies, so right-click inside the method and select Add View to create it.

In the Add View dialog box, we'll indicate that we're passing a Movie class to the view template. Unlike the previous times when we used the Add View dialog box and chose to create an empty template, this time we'll indicate that we want Visual Web Developer to automatically "scaffold" a view template for us that contains some default content. To do this, select List in the Scaffold template drop-down list.

Remember that after you've created a new class, you'll need to compile your application before the class shows up in the Add View dialog box.

Click Add. Visual Web Developer automatically generates the code for a view that displays our list of movies. This is a good time to change the <h2> heading to something like "My Movie List" like you did earlier with the "Hello World" view.

The code below show a portion of the Index view for the movie controller. In this section, change the format string for the release date from {0:g} to {0:d} (that is, from general date to short date). Change the format string for the Price property from {0:F} to {0:c} (from float to currency).

In addition, in the table header, change the column name from "ReleaseDate" to "Release Date" (two words).

<table>     <tr>         <th></th>         <th>Title</th>         <th>Release Date</th>         <th>Genre</th>         <th>Price</th>         <th>Rating</th>     </tr>     @foreach (var item in Model) {     <tr>         <td>             @Html.ActionLink("Edit", "Edit", new { id=item.ID }) |             @Html.ActionLink("Details", "Details", new { id=item.ID }) |             @Html.ActionLink("Delete", "Delete", new { id=item.ID })         </td>         <td>             @item.Title         </td>         <td>             @String.Format("{0:d}", item.ReleaseDate)         </td>         <td>             @item.Genre         </td>         <td>             @String.Format("{0:c}", item.Price)         </td>     </tr> } </table>

We have not added a connection string to the Web.config file. When no connection string is provided, the code-first approach creates the database file in the default SQL Express directory and gives the file a name based on the database context name with the namespace prepended. Let's set an explicit connection string now.

Creating a Connection String and Working with SQL Server Express

Open the application root Web.config file. (Not the Web.config file in the Views folder.) The image below show both Web.config files; open the Web.config file circled in red.

Add the following connection string to the <connectionStrings> element in the Web.config file.

    <add name="MovieDBContext"      connectionString="Server=./SQLEXPRESS;      Database=Movies;Trusted_Connection=true"      providerName="System.Data.SqlClient" />

Run the application and browse to the Movies controller by appending /Movies to the URL in the address bar of your browser. An empty list of movies is displayed.

A SQL Server Express 2008 database called Movies was automatically created for you. You can verify that it's been created by looking in the C:/Program Files/Microsoft SQL Server/MSSQL10.SQLEXPRESS/MSSQL/DATA folder.

Under the hood, our code-first approach has created an empty Movies database with a movie table with columns that map to our Movie class. In the next tutorial, we'll add a Create method to add movies to this database.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.