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

Retrieving and displaying data with model binding and web forms

by Tom FitzMacken

This tutorial series demonstrates basic aspects of using model binding with an ASP.NET Web Forms project. Model binding makes data interaction more straight-forward than dealing with data source objects (such as ObjectDataSource or SqlDataSource). This series starts with introductory material and moves to more advanced concepts in later tutorials.

The model binding pattern works with any data access technology. In this tutorial, you will use Entity Framework, but you could use the data access technology that is most familiar to you. From a data-bound server control, such as a GridView, ListView, DetailsView, or FormView control, you specify the names of the methods to use for selecting, updating, deleting, and creating data. In this tutorial, you will specify a value for the SelectMethod.

Within that method, you provide the logic for retrieving the data. In the next tutorial, you will set values for UpdateMethod, DeleteMethod and InsertMethod.

You can download the complete project in C# or VB. The downloadable code works with either Visual Studio 2012 or Visual Studio 2013. It uses the Visual Studio 2012 template, which is slightly different than the Visual Studio 2013 template shown in this tutorial.

In the tutorial you run the application in Visual Studio. You can also make the application available over the Internet by deploying it to a hosting provider. Microsoft offers free web hosting for up to 10 web sites in a
free Azure trial account. For information about how to deploy a Visual Studio web project to Azure App Service Web Apps, see the ASP.NET Web Deployment using Visual Studio series. That tutorial also shows how to use Entity Framework Code First Migrations to deploy your SQL Server database to Azure SQL Database.

Software versions used in the tutorial

  • Microsoft Visual Studio 2013 or Microsoft Visual Studio Express 2013 for Web

This tutorial also works with Visual Studio 2012 but there will be some differences in the user interface and project template.

What you’ll build

In this tutorial, you’ll:

  1. Build data objects that reflect a university with students enrolled in courses
  2. Build database tables from the objects
  3. Populate the database with test data
  4. Display data in a web form

Set up project

In Visual Studio 2013, create a new ASP.NET Web Application called ContosoUniversityModelBinding.

create project
create project

Select the Web Forms template, and leave the other default options. Click OK to setup the project.

select web forms
select web forms

First, you will make a couple of small changes to customize the appearance of the site. Open the Site.Master file, and change the title to include Contoso University instead of My ASP.NET Application.

[!code-aspxMain]

   1:  <title><%: Page.Title %> - Contoso University</title>

Then, change the header text from Application name to Contoso University.

[!code-aspxMain]

   1:  <div class="navbar-header">
   2:      <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
   3:          <span class="icon-bar"></span>
   4:          <span class="icon-bar"></span>
   5:          <span class="icon-bar"></span>
   6:      </button>
   7:      <a class="navbar-brand" runat="server" href="~/">Contoso University</a>
   8:  </div>

Also in Site.Master, change the navigation links that appear in the header to reflect the pages that are relevant to this site. You will not need either the About page or the Contact page so those links can be removed. Instead, you will need a link to a page called Students. This page has not been created yet.

[!code-aspxMain]

   1:  <ul class="nav navbar-nav">
   2:      <li><a runat="server" href="~/">Home</a></li>
   3:      <li><a runat="server" href="~/Students">Students</a></li>
   4:  </ul>

Save and close Site.Master.

Now, you’ll create the web form for displaying student data. Right-click your project, and Add a New Item. Select the Web Form with Master Page template, and name it Students.aspx.

create page
create page

Select Site.Master as the master page for the new web form.

Create the data models and database

You will use Code First Migrations to create objects and the corresponding database tables. These tables will store information about the students and their courses.

In the Models folder, add a new class named UniversityModels.cs.

create model class
create model class

In this file, define the SchoolContext, Student, Enrollment, and Course classes as follows:

[!code-csharpMain]

   1:  using System;
   2:  using System.Collections.Generic;
   3:  using System.Data.Entity;
   4:  using System.ComponentModel.DataAnnotations;
   5:   
   6:  namespace ContosoUniversityModelBinding.Models
   7:  {
   8:      public class SchoolContext : DbContext
   9:      {
  10:          public DbSet<Student> Students { get; set; }
  11:          public DbSet<Enrollment> Enrollments { get; set; }
  12:          public DbSet<Course> Courses { get; set; }
  13:      }
  14:   
  15:      public class Student
  16:      {
  17:          [Key, Display(Name = "ID")]
  18:          [ScaffoldColumn(false)]
  19:          public int StudentID { get; set; }
  20:   
  21:          [Required, StringLength(40), Display(Name="Last Name")]
  22:          public string LastName { get; set; }
  23:   
  24:          [Required, StringLength(20), Display(Name = "First Name")]
  25:          public string FirstName { get; set; }
  26:   
  27:          [EnumDataType(typeof(AcademicYear)), Display(Name = "Academic Year")]
  28:          public AcademicYear Year { get; set; }
  29:   
  30:          public virtual ICollection<Enrollment> Enrollments { get; set; }
  31:      }
  32:   
  33:      public class Enrollment
  34:      {
  35:          [Key]
  36:          public int EnrollmentID { get; set; }
  37:          public int CourseID { get; set; }
  38:          public int StudentID { get; set; }
  39:          public decimal? Grade { get; set; }
  40:          public virtual Course Course { get; set; }
  41:          public virtual Student Student { get; set; }
  42:      }
  43:   
  44:      public class Course
  45:      {
  46:          [Key]
  47:          public int CourseID { get; set; }
  48:          public string Title { get; set; }
  49:          public int Credits { get; set; }
  50:          public virtual ICollection<Enrollment> Enrollments { get; set; }
  51:      } 
  52:   
  53:      public enum AcademicYear
  54:      {
  55:          Freshman,
  56:          Sophomore,
  57:          Junior,
  58:          Senior
  59:      }
  60:  }

The SchoolContext class derives from DbContext, which manages the database connection and changes in the data.

In the Student class, notice the attributes that have been applied to the FirstName, LastName, and Year properties. These attributes will be used for data validation in this tutorial. To simplify the code for this demonstration project, only these properties were marked with data-validation attributes. In a real project, you would apply validation attributes to all properties that need validated data, such as properties in the Enrollment and Course classes.

Save UniversityModels.cs.

You will use the tools for Code First Migrations to set up a database based on these classes.

In Package Manager Console, run the command:
enable-migrations -ContextTypeName ContosoUniversityModelBinding.Models.SchoolContext

If the command completes successfully you will receive a message stating migrations have been enabled,

enable migrations
enable migrations

Notice that a new file named Configuration.cs has been created. In Visual Studio, this file is automatically opened after it is created. The Configuration class contains a Seed method which enables you to pre-populate the database tables with test data.

Add the following code to the Seed method. You’ll need to add a using statement for the ContosoUniversityModelBinding.Models namespace.

[!code-csharpMain]

   1:  namespace ContosoUniversityModelBinding.Migrations
   2:  {
   3:      using System;
   4:      using System.Data.Entity;
   5:      using System.Data.Entity.Migrations;
   6:      using System.Linq;
   7:      using ContosoUniversityModelBinding.Models;
   8:   
   9:      internal sealed class Configuration : DbMigrationsConfiguration<SchoolContext>
  10:      {
  11:          public Configuration()
  12:          {
  13:              AutomaticMigrationsEnabled = false;
  14:          }
  15:   
  16:          protected override void Seed(SchoolContext context)
  17:          {
  18:   
  19:              context.Students.AddOrUpdate(
  20:                   new Student { 
  21:                       FirstName = "Carson", 
  22:                       LastName = "Alexander", 
  23:                       Year = AcademicYear.Freshman },
  24:                   new Student { 
  25:                       FirstName = "Meredith", 
  26:                       LastName = "Alonso", 
  27:                       Year = AcademicYear.Freshman },
  28:                   new Student { 
  29:                       FirstName = "Arturo", 
  30:                       LastName = "Anand", 
  31:                       Year = AcademicYear.Sophomore },
  32:                   new Student { 
  33:                       FirstName = "Gytis", 
  34:                       LastName = "Barzdukas", 
  35:                       Year = AcademicYear.Sophomore },
  36:                   new Student { 
  37:                       FirstName = "Yan", 
  38:                       LastName = "Li", 
  39:                       Year = AcademicYear.Junior },
  40:                   new Student { 
  41:                       FirstName = "Peggy", 
  42:                       LastName = "Justice", 
  43:                       Year = AcademicYear.Junior },
  44:                   new Student { 
  45:                       FirstName = "Laura", 
  46:                       LastName = "Norman", 
  47:                       Year = AcademicYear.Senior },
  48:                   new Student { 
  49:                       FirstName = "Nino", 
  50:                       LastName = "Olivetto", 
  51:                       Year = AcademicYear.Senior }
  52:                   );
  53:   
  54:              context.SaveChanges();
  55:   
  56:              context.Courses.AddOrUpdate(
  57:                  new Course { Title = "Chemistry", Credits = 3 },
  58:                  new Course { Title = "Microeconomics", Credits = 3 },
  59:                  new Course { Title = "Macroeconomics", Credits = 3 },
  60:                  new Course { Title = "Calculus", Credits = 4 },
  61:                  new Course { Title = "Trigonometry", Credits = 4 },
  62:                  new Course { Title = "Composition", Credits = 3 },
  63:                  new Course { Title = "Literature", Credits = 4 }
  64:                  );
  65:   
  66:              context.SaveChanges();
  67:   
  68:              context.Enrollments.AddOrUpdate(
  69:                  new Enrollment { StudentID = 1, CourseID = 1, Grade = 1 },
  70:                  new Enrollment { StudentID = 1, CourseID = 2, Grade = 3 },
  71:                  new Enrollment { StudentID = 1, CourseID = 3, Grade = 1 },
  72:                  new Enrollment { StudentID = 2, CourseID = 4, Grade = 2 },
  73:                  new Enrollment { StudentID = 2, CourseID = 5, Grade = 4 },
  74:                  new Enrollment { StudentID = 2, CourseID = 6, Grade = 4 },
  75:                  new Enrollment { StudentID = 3, CourseID = 1 },
  76:                  new Enrollment { StudentID = 4, CourseID = 1 },
  77:                  new Enrollment { StudentID = 4, CourseID = 2, Grade = 4 },
  78:                  new Enrollment { StudentID = 5, CourseID = 3, Grade = 3 },
  79:                  new Enrollment { StudentID = 6, CourseID = 4 },
  80:                  new Enrollment { StudentID = 7, CourseID = 5, Grade = 2 }
  81:                  );
  82:   
  83:              context.SaveChanges();
  84:          }
  85:      }
  86:  }

Save Configuration.cs.

In the Package Manager Console, run the command add-migration initial.

Then, run the command update-database.

If you receive an exception when running this command, it is possible that the values for StudentID and CourseID have varied from the values in the Seed method. Open those tables in the database and find existing values for StudentID and CourseID. Add those values in the code for seeding the Enrollments table.

The database file has been added, but it is currently hidden in the project. Click Show All Files to display the file.

show all files
show all files

Notice the .mdf file now appears in the App_Data folder.

database file
database file

Double-click the .mdf file and open the Server Explorer. The tables now exist and are populated with data.

database tables
database tables

With data in the database, you are now ready to retrieve that data and display it in a web page. You will use a GridView control to display the data in columns and rows.

Open Students.aspx, and locate the MainContent placeholder. Within that placeholder, add a GridView control that includes the following code.

[!code-aspxMain]

   1:  <asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
   2:      <asp:GridView runat="server" ID="studentsGrid"
   3:          ItemType="ContosoUniversityModelBinding.Models.Student" DataKeyNames="StudentID" 
   4:          SelectMethod="studentsGrid_GetData"
   5:          AutoGenerateColumns="false">
   6:          <Columns>
   7:              <asp:DynamicField DataField="StudentID" />
   8:              <asp:DynamicField DataField="LastName" />
   9:              <asp:DynamicField DataField="FirstName" />
  10:              <asp:DynamicField DataField="Year" />          
  11:              <asp:TemplateField HeaderText="Total Credits">
  12:                <ItemTemplate>
  13:                  <asp:Label Text="&lt;%# Item.Enrollments.Sum(en => en.Course.Credits) %>" 
  14:                      runat="server" />
  15:                </ItemTemplate>
  16:              </asp:TemplateField>        
  17:          </Columns>
  18:      </asp:GridView>
  19:  </asp:Content>

There are a couple of important concepts in this markup code for you to notice. First, notice that a value is set for the SelectMethod property in the GridView element. This value specifies the name of the method that is used for retrieving data for the GridView. You will create this method in the next step. Second, notice that the ItemType property is set to the Student class that you created earlier. By setting this value, you can refer to properties of that class in the markup code. For example, the Student class contains a collection named Enrollments. You can use Item.Enrollments to retrieve that collection and then use LINQ syntax to retrieve the sum of enrolled credits for each student.

In the code-behind file, you need to add the method that is specified for the SelectMethod value. Open Students.aspx.cs, and add using statements for the ContosoUniversityModelBinding.Models and System.Data.Entity namespaces.

[!code-csharpMain]

   1:  using ContosoUniversityModelBinding.Models;
   2:  using System.Data.Entity;

Then, add the following method. Notice that the name of this method matches the name you provided for SelectMethod.

[!code-csharpMain]

   1:  public IQueryable<Student> studentsGrid_GetData()
   2:  {
   3:      SchoolContext db = new SchoolContext();
   4:      var query = db.Students.Include(s => s.Enrollments.Select(e => e.Course));
   5:      return query;
   6:  }

The Include clause improves the performance of this query but is not essential for the query to work. Without the Include clause, the data would be retrieved using lazy loading, which involves sending a separate query to the database each time related data is retrieved. By providing the Include clause, the data is retrieved using eager loading, which means all of the related data is retrieved through a single query of the database. In cases where most of the related data is not be used, eager loading can be less efficient because more data is retrieved. However, in this case, eager loading provides the best performance because the related data is displayed for each record.

For more information about performance consideration when loading related data, see the section titled Lazy, Eager, and Explicit Loading of Related Data in the Reading Related Data with the Entity Framework in an ASP.NET MVC Application topic.

By default, the data is sorted by the values of the property marked as the key. You can add an OrderBy clause to specify a different value for sorting. In this example, the default StudentID property is used for sorting. In the Sorting, Paging, and Filtering Data topic, you will enable the user to select a column for sorting.

Run your web application, and navigate to the Students page. The Students page displays the following student information.

show data
show data

Automatic generation of model binding methods

When working through this tutorial series, you can simply copy the code from the tutorial to your project. However, one disadvantage of this approach is that you may not become aware of the feature provided by Visual Studio to automatically generate code for model binding methods. When working on your own projects, automatic code generation can save you time and help you gain a sense of how to implement an operation. This section describes the automatic code generation feature. This section is only informational and does not contain any code you need to implement in your project.

When setting a value for the SelectMethod, UpdateMethod, InsertMethod, or DeleteMethod properties in the markup code, you can select the Create New Method option.

create new method
create new method

Visual Studio not only creates a method in the code-behind with the proper signature, but also generates implementation code to assist you with performing the operation. If you first set the ItemType property before using the automatic code generation feature, the generated code will use that type for the operations. For example, when setting the UpdateMethod property, the following code is automatically generated:

[!code-csharpMain]

   1:  // The id parameter name should match the DataKeyNames value set on the control
   2:  public void studentsGrid_UpdateItem(int id)
   3:  {
   4:      ContosoUniversityModelBinding.Models.Student item = null;
   5:      // Load the item here, e.g. item = MyDataLayer.Find(id);
   6:      if (item == null)
   7:      {
   8:          // The item wasn't found
   9:          ModelState.AddModelError("", String.Format("Item with id {0} was not found", id));
  10:          return;
  11:      }
  12:      TryUpdateModel(item);
  13:      if (ModelState.IsValid)
  14:      {
  15:          // Save changes here, e.g. MyDataLayer.SaveChanges();
  16:   
  17:      }
  18:  }

Again, the above code does not need to be added to your project. In the next tutorial, you will implement methods for updating, deleting and adding new data.

Conclusion

In this tutorial, you created data model classes and generated a database from those classes. You filled the database tables with test data. You used model binding to retrieve data from the database, and then displayed the data in a GridView.

In the next tutorial in this series, you will enable updating, deleting, and creating data.

Next





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/web-forms/overview/presenting-and-managing-data/model-binding/retrieving-data.htm
<SITEMAP>  <MVC>  <ASP>  <NET>  <DATA>  <KIOSK>  <FLEX>  <SQL>  <NOTES>  <LINUX>  <MONO>  <FREEWARE>  <DOCS>  <ENG>  <CHAT ME>  <ABOUT ME>  < THANKS ME>