"
 
 
 
ASP.NET (snapshot 2017) Microsoft documentation and samples

Advanced Entity Framework 6 Scenarios for an MVC 5 Web Application (12 of 12)

by Tom Dykstra

Download Completed Project or Download PDF

The Contoso University sample web application demonstrates how to create ASP.NET MVC 5 applications using the Entity Framework 6 Code First and Visual Studio 2013. For information about the tutorial series, see the first tutorial in the series.

In the previous tutorial you implemented table-per-hierarchy inheritance. This tutorial includes introduces several topics that are useful to be aware of when you go beyond the basics of developing ASP.NET web applications that use Entity Framework Code First. Step-by-step instructions walk you through the code and using Visual Studio for the following topics:

The tutorial introduces several topics with brief introductions followed by links to resources for more information:

The tutorial also includes the following sections:

For most of these topics, you’ll work with pages that you already created. To use raw SQL to do bulk updates you’ll create a new page that updates the number of credits of all courses in the database:

Update_Course_Credits_initial_page
Update_Course_Credits_initial_page

## Performing Raw SQL Queries

The Entity Framework Code First API includes methods that enable you to pass SQL commands directly to the database. You have the following options:

One of the advantages of using the Entity Framework is that it avoids tying your code too closely to a particular method of storing data. It does this by generating SQL queries and commands for you, which also frees you from having to write them yourself. But there are exceptional scenarios when you need to run specific SQL queries that you have manually created, and these methods make it possible for you to handle such exceptions.

As is always true when you execute SQL commands in a web application, you must take precautions to protect your site against SQL injection attacks. One way to do that is to use parameterized queries to make sure that strings submitted by a web page can’t be interpreted as SQL commands. In this tutorial you’ll use parameterized queries when integrating user input into a query.

Calling a Query that Returns Entities

The DbSet<TEntity> class provides a method that you can use to execute a query that returns an entity of type TEntity. To see how this works you’ll change the code in the Details method of the Department controller.

In DepartmentController.cs, in the Details method, replace the db.Departments.FindAsync method call with a db.Departments.SqlQuery method call, as shown in the following highlighted code:

[!code-csharpMain]

   1:  public async Task<ActionResult> Details(int? id)
   2:  {
   3:      if (id == null)
   4:      {
   5:          return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
   6:      }
   7:   
   8:      // Commenting out original code to show how to use a raw SQL query.
   9:      //Department department = await db.Departments.FindAsync(id);
  10:   
  11:      // Create and execute raw SQL query.
  12:      string query = "SELECT * FROM Department WHERE DepartmentID = @p0";
  13:      Department department = await db.Departments.SqlQuery(query, id).SingleOrDefaultAsync();
  14:      
  15:      if (department == null)
  16:      {
  17:          return HttpNotFound();
  18:      }
  19:      return View(department);
  20:  }

To verify that the new code works correctly, select the Departments tab and then Details for one of the departments.

Department Details
Department Details

Calling a Query that Returns Other Types of Objects

Earlier you created a student statistics grid for the About page that showed the number of students for each enrollment date. The code that does this in HomeController.cs uses LINQ:

[!code-csharpMain]

   1:  var data = from student in db.Students
   2:             group student by student.EnrollmentDate into dateGroup
   3:             select new EnrollmentDateGroup()
   4:             {
   5:                 EnrollmentDate = dateGroup.Key,
   6:                 StudentCount = dateGroup.Count()
   7:             };

Suppose you want to write the code that retrieves this data directly in SQL rather than using LINQ. To do that you need to run a query that returns something other than entity objects, which means you need to use the Database.SqlQuery method.

In HomeController.cs, replace the LINQ statement in the About method with a SQL statement, as shown in the following highlighted code:

[!code-csharpMain]

   1:  public ActionResult About()
   2:  {
   3:      // Commenting out LINQ to show how to do the same thing in SQL.
   4:      //IQueryable<EnrollmentDateGroup> = from student in db.Students
   5:      //           group student by student.EnrollmentDate into dateGroup
   6:      //           select new EnrollmentDateGroup()
   7:      //           {
   8:      //               EnrollmentDate = dateGroup.Key,
   9:      //               StudentCount = dateGroup.Count()
  10:      //           };
  11:   
  12:      // SQL version of the above LINQ code.
  13:      string query = "SELECT EnrollmentDate, COUNT(*) AS StudentCount "
  14:          + "FROM Person "
  15:          + "WHERE Discriminator = 'Student' "
  16:          + "GROUP BY EnrollmentDate";
  17:      IEnumerable<EnrollmentDateGroup> data = db.Database.SqlQuery<EnrollmentDateGroup>(query);
  18:   
  19:      return View(data.ToList());
  20:  }

Run the About page. It displays the same data it did before.

About_page
About_page

Calling an Update Query

Suppose Contoso University administrators want to be able to perform bulk changes in the database, such as changing the number of credits for every course. If the university has a large number of courses, it would be inefficient to retrieve them all as entities and change them individually. In this section you’ll implement a web page that enables the user to specify a factor by which to change the number of credits for all courses, and you’ll make the change by executing a SQL UPDATE statement. The web page will look like the following illustration:

Update_Course_Credits_initial_page
Update_Course_Credits_initial_page

In CourseContoller.cs, add UpdateCourseCredits methods for HttpGet and HttpPost:

[!code-csharpMain]

   1:  public ActionResult UpdateCourseCredits()
   2:  {
   3:      return View();
   4:  }
   5:   
   6:  [HttpPost]
   7:  public ActionResult UpdateCourseCredits(int? multiplier)
   8:  {
   9:      if (multiplier != null)
  10:      {
  11:          ViewBag.RowsAffected = db.Database.ExecuteSqlCommand("UPDATE Course SET Credits = Credits * {0}", multiplier);
  12:      }
  13:      return View();
  14:  }

When the controller processes an HttpGet request, nothing is returned in the ViewBag.RowsAffected variable, and the view displays an empty text box and a submit button, as shown in the preceding illustration.

When the Update button is clicked, the HttpPost method is called, and multiplier has the value entered in the text box. The code then executes the SQL that updates courses and returns the number of affected rows to the view in the ViewBag.RowsAffected variable. When the view gets a value in that variable, it displays the number of rows updated instead of the text box and submit button, as shown in the following illustration:

Update_Course_Credits_rows_affected_page
Update_Course_Credits_rows_affected_page

In CourseController.cs, right-click one of the UpdateCourseCredits methods, and then click Add View.

Add_View_dialog_box_for_Update_Course_Credits
Add_View_dialog_box_for_Update_Course_Credits

In Views.cshtml, replace the template code with the following code:

[!code-cshtmlMain]

   1:  @model ContosoUniversity.Models.Course
   2:   
   3:  @{
   4:      ViewBag.Title = "UpdateCourseCredits";
   5:  }
   6:   
   7:  <h2>Update Course Credits</h2>
   8:   
   9:  @if (ViewBag.RowsAffected == null)
  10:  {
  11:      using (Html.BeginForm())
  12:      {
  13:          <p>
  14:              Enter a number to multiply every course's credits by: @Html.TextBox("multiplier")
  15:          </p>
  16:          <p>
  17:              <input type="submit" value="Update" />
  18:          </p>
  19:      }
  20:  }
  21:  @if (ViewBag.RowsAffected != null)
  22:  {
  23:      <p>
  24:          Number of rows updated: @ViewBag.RowsAffected
  25:      </p>
  26:  }
  27:  <div>
  28:      @Html.ActionLink("Back to List", "Index")
  29:  </div>

Run the UpdateCourseCredits method by selecting the Courses tab, then adding “/UpdateCourseCredits” to the end of the URL in the browser’s address bar (for example: http://localhost:50205/Course/UpdateCourseCredits). Enter a number in the text box:

Update_Course_Credits_initial_page_with_2_entered
Update_Course_Credits_initial_page_with_2_entered

Click Update. You see the number of rows affected:

Update_Course_Credits_rows_affected_page
Update_Course_Credits_rows_affected_page

Click Back to List to see the list of courses with the revised number of credits.

Courses_Index_page_showing_revised_credits
Courses_Index_page_showing_revised_credits

For more information about raw SQL queries, see Raw SQL Queries on MSDN.

## No-Tracking Queries

When a database context retrieves table rows and creates entity objects that represent them, by default it keeps track of whether the entities in memory are in sync with what’s in the database. The data in memory acts as a cache and is used when you update an entity. This caching is often unnecessary in a web application because context instances are typically short-lived (a new one is created and disposed for each request) and the context that reads an entity is typically disposed before that entity is used again.

You can disable tracking of entity objects in memory by using the AsNoTracking method. Typical scenarios in which you might want to do that include the following:

For an example that demonstrates how to use the AsNoTracking method, see the earlier version of this tutorial. This version of the tutorial doesn’t set the Modified flag on a model-binder-created entity in the Edit method, so it doesn’t need AsNoTracking.

## Examining SQL sent to the database

Sometimes it’s helpful to be able to see the actual SQL queries that are sent to the database. In an earlier tutorial you saw how to do that in interceptor code; now you’ll see some ways to do it without writing interceptor code. To try this out, you’ll look at a simple query and then look at what happens to it as you add options such eager loading, filtering, and sorting.

In Controllers/CourseController, replace the Index method with the following code, in order to temporarily stop eager loading:

[!code-csharpMain]

   1:  public ActionResult Index()
   2:  {
   3:      var courses = db.Courses;
   4:      var sql = courses.ToString();
   5:      return View(courses.ToList());
   6:  }

Now set a breakpoint on the return statement (F9 with the cursor on that line). Press F5 to run the project in debug mode, and select the Course Index page. When the code reaches the breakpoint, examine the sql variable. You see the query that’s sent to SQL Server. It’s a simple Select statement.

[!code-sqlMain]

   1:  {SELECT 
   2:  [Extent1].[CourseID] AS [CourseID], 
   3:  [Extent1].[Title] AS [Title], 
   4:  [Extent1].[Credits] AS [Credits], 
   5:  [Extent1].[DepartmentID] AS [DepartmentID]
   6:  FROM [Course] AS [Extent1]}

Click the magnifying class to see the query in the Text Visualizer.

Now you’ll add a drop-down list to the Courses Index page so that users can filter for a particular department. You’ll sort the courses by title, and you’ll specify eager loading for the Department navigation property.

In CourseController.cs, replace the Index method with the following code:

[!code-csharpMain]

   1:  public ActionResult Index(int? SelectedDepartment)
   2:  {
   3:      var departments = db.Departments.OrderBy(q => q.Name).ToList();
   4:      ViewBag.SelectedDepartment = new SelectList(departments, "DepartmentID", "Name", SelectedDepartment);
   5:      int departmentID = SelectedDepartment.GetValueOrDefault();
   6:   
   7:      IQueryable<Course> courses = db.Courses
   8:          .Where(c => !SelectedDepartment.HasValue || c.DepartmentID == departmentID)
   9:          .OrderBy(d => d.CourseID)
  10:          .Include(d => d.Department);
  11:      var sql = courses.ToString();
  12:      return View(courses.ToList());
  13:  }

Restore the breakpoint on the return statement.

The method receives the selected value of the drop-down list in the SelectedDepartment parameter. If nothing is selected, this parameter will be null.

A SelectList collection containing all departments is passed to the view for the drop-down list. The parameters passed to the SelectList constructor specify the value field name, the text field name, and the selected item.

For the Get method of the Course repository, the code specifies a filter expression, a sort order, and eager loading for the Department navigation property. The filter expression always returns true if nothing is selected in the drop-down list (that is, SelectedDepartment is null).

In Views.cshtml, immediately before the opening table tag, add the following code to create the drop-down list and a submit button:

[!code-cshtmlMain]

   1:  @using (Html.BeginForm())
   2:  {
   3:      <p>Select Department: @Html.DropDownList("SelectedDepartment","All")   
   4:      <input type="submit" value="Filter" /></p>
   5:  }

With the breakpoint still set, run the Course Index page. Continue through the first times that the code hits a breakpoint, so that the page is displayed in the browser. Select a department from the drop-down list and click Filter:

Course_Index_page_with_department_selected
Course_Index_page_with_department_selected

This time the first breakpoint will be for the departments query for the drop-down list. Skip that and view the query variable the next time the code reaches the breakpoint in order to see what the Course query now looks like. You’ll see something like the following:

[!code-sqlMain]

   1:  SELECT 
   2:      [Project1].[CourseID] AS [CourseID], 
   3:      [Project1].[Title] AS [Title], 
   4:      [Project1].[Credits] AS [Credits], 
   5:      [Project1].[DepartmentID] AS [DepartmentID], 
   6:      [Project1].[DepartmentID1] AS [DepartmentID1], 
   7:      [Project1].[Name] AS [Name], 
   8:      [Project1].[Budget] AS [Budget], 
   9:      [Project1].[StartDate] AS [StartDate], 
  10:      [Project1].[InstructorID] AS [InstructorID], 
  11:      [Project1].[RowVersion] AS [RowVersion]
  12:      FROM ( SELECT 
  13:          [Extent1].[CourseID] AS [CourseID], 
  14:          [Extent1].[Title] AS [Title], 
  15:          [Extent1].[Credits] AS [Credits], 
  16:          [Extent1].[DepartmentID] AS [DepartmentID], 
  17:          [Extent2].[DepartmentID] AS [DepartmentID1], 
  18:          [Extent2].[Name] AS [Name], 
  19:          [Extent2].[Budget] AS [Budget], 
  20:          [Extent2].[StartDate] AS [StartDate], 
  21:          [Extent2].[InstructorID] AS [InstructorID], 
  22:          [Extent2].[RowVersion] AS [RowVersion]
  23:          FROM  [dbo].[Course] AS [Extent1]
  24:          INNER JOIN [dbo].[Department] AS [Extent2] ON [Extent1].[DepartmentID] = [Extent2].[DepartmentID]
  25:          WHERE @p__linq__0 IS NULL OR [Extent1].[DepartmentID] = @p__linq__1
  26:      )  AS [Project1]
  27:      ORDER BY [Project1].[CourseID] ASC

You can see that the query is now a JOIN query that loads Department data along with the Course data, and that it includes a WHERE clause.

Remove the var sql = courses.ToString() line.

Repository and unit of work patterns

Many developers write code to implement the repository and unit of work patterns as a wrapper around code that works with the Entity Framework. These patterns are intended to create an abstraction layer between the data access layer and the business logic layer of an application. Implementing these patterns can help insulate your application from changes in the data store and can facilitate automated unit testing or test-driven development (TDD). However, writing additional code to implement these patterns is not always the best choice for applications that use EF, for several reasons:

For more information about how to implement the repository and unit of work patterns, see the Entity Framework 5 version of this tutorial series. For information about ways to implement TDD in Entity Framework 6, see the following resources:

## Proxy classes

When the Entity Framework creates entity instances (for example, when you execute a query), it often creates them as instances of a dynamically generated derived type that acts as a proxy for the entity. For example, see the following two debugger images. In the first image, you see that the student variable is the expected Student type immediately after you instantiate the entity. In the second image, after EF has been used to read a student entity from the database, you see the proxy class.

Before proxy class
Before proxy class
After proxy class
After proxy class

This proxy class overrides some virtual properties of the entity to insert hooks for performing actions automatically when the property is accessed. One function this mechanism is used for is lazy loading.

Most of the time you don’t need to be aware of this use of proxies, but there are exceptions:

For more information, see Working with Proxies on MSDN.

## Automatic change detection

The Entity Framework determines how an entity has changed (and therefore which updates need to be sent to the database) by comparing the current values of an entity with the original values. The original values are stored when the entity is queried or attached. Some of the methods that cause automatic change detection are the following:

If you’re tracking a large number of entities and you call one of these methods many times in a loop, you might get significant performance improvements by temporarily turning off automatic change detection using the AutoDetectChangesEnabled property. For more information, see Automatically Detecting Changes on MSDN.

## Automatic validation

When you call the SaveChanges method, by default the Entity Framework validates the data in all properties of all changed entities before updating the database. If you’ve updated a large number of entities and you’ve already validated the data, this work is unnecessary and you could make the process of saving the changes take less time by temporarily turning off validation. You can do that using the ValidateOnSaveEnabled property. For more information, see Validation on MSDN.

## Entity Framework Power Tools

Entity Framework Power Tools is a Visual Studio add-in that was used to create the data model diagrams shown in these tutorials. The tools can also do other function such as generate entity classes based on the tables in an existing database so that you can use the database with Code First. After you install the tools, some additional options appear in context menus. For example, when you right-click your context class in Solution Explorer, you get an option to generate a diagram. When you’re using Code First you can’t change the data model in the diagram, but you can move things around to make it easier to understand.

EF in context menu
EF in context menu
EF diagram
EF diagram

## Entity Framework source code

The source code for Entity Framework 6 is available at GitHub. You can file bugs, and you can contribute your own enhancements to the EF source code.

Although the source code is open, Entity Framework is fully supported as a Microsoft product. The Microsoft Entity Framework team keeps control over which contributions are accepted and tests all code changes to ensure the quality of each release.

## Summary

This completes this series of tutorials on using the Entity Framework in an ASP.NET MVC application. For more information about how to work with data using the Entity Framework, see the EF documentation page on MSDN and ASP.NET Data Access - Recommended Resources.

For more information about how to deploy your web application after you’ve built it, see ASP.NET Web Deployment - Recommended Resources in the MSDN Library.

For information about other topics related to MVC, such as authentication and authorization, see the ASP.NET MVC - Recommended Resources.

## Acknowledgments

## VB

When the tutorial was originally produced for EF 4.1, we provided both C# and VB versions of the completed download project. Due to time limitations and other priorities we have not done that for this version. If you build a VB project using these tutorials and would be willing to share that with others, please let us know.

## Common errors, and solutions or workarounds for them

Cannot create/shadow copy

Error Message:

Cannot create/shadow copy ‘<filename>’ when that file already exists.

Solution

Wait a few seconds and refresh the page.

Update-Database not recognized

Error Message (from the Update-Database command in the PMC):

The term ‘Update-Database’ is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

Solution

Exit Visual Studio. Reopen project and try again.

Validation failed

Error Message (from the Update-Database command in the PMC):

Validation failed for one or more entities. See ‘EntityValidationErrors’ property for more details.

Solution

One cause of this problem is validation errors when the Seed method runs. See Seeding and Debugging Entity Framework (EF) DBs for tips on debugging the Seed method.

HTTP 500.19 error

Error Message:

HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.

Solution

One way you can get this error is from having multiple copies of the solution, each of them using the same port number. You can usually solve this problem by exiting all instances of Visual Studio, then restarting the project you’re working on. If that doesn’t work, try changing the port number. Right click on the project file and then click properties. Select the Web tab and then change the port number in the Project Url text box.

Error locating SQL Server instance

Error Message:

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)

Solution

Check the connection string. If you have manually deleted the database, change the name of the database in the construction string.

Previous





Comments ( )
<00>  <01>  <02>  <03>  <04>  <05>  <06>  <07>  <08>  <09>  <10>  <11>  <12>  <13>  <14>  <15>  <16>  <17>  <18>  <19>  <20>  <21>  <22>  <23
Link to this page: //www.vb-net.com/AspNet-DocAndSamples-2017/aspnet/mvc/overview/getting-started/getting-started-with-ef-using-mvc/advanced-entity-framework-scenarios-for-an-mvc-web-application.htm
<SITEMAP>  <MVC>  <ASP>  <NET>  <DATA>  <KIOSK>  <FLEX>  <SQL>  <NOTES>  <LINUX>  <MONO>  <FREEWARE>  <DOCS>  <ENG>  <CHAT ME>  <ABOUT ME>  < THANKS ME>