Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Entity Framework with ASP.NET MVC

0.00/5 (No votes)
16 Aug 2009 1  
In this article, I will explore the entity framework with ASP.NET MVC. We will modify the form validation sample that will access the data layer using the Entity Framework.

Introduction

In this article, I will explore the Entity Framework with ASP.NET MVC. We will modify the form validation sample that will access the data layer using the Entity Framework.

We will create the following table in a local database using SQL Express:

SQL
CREATE TABLE [dbo].[tblComment]( 
    [CommentID] [int] IDENTITY(1,1) NOT NULL, 
    [Name] [nvarchar](50) NULL, 
    [Email] [nvarchar](100) NULL, 
    [Comment] [nvarchar](100) NULL)

Now, right click on the Models directory and select Add New Item. In the dialog, select ADO.NET Entity Data Model, as shown below:

Image 1

In the wizard, select "Generate from Database", and then select your database connection string. Then, select the tblComment table and the click Finish. Visual Studio will create a set of .NET classes that are custom built for accessing the database, as shown below:

Image 2

Now, we will modify our controller as shown below:

C#
[HandleError] 
public class UserCommentController : Controller 
{ 
    [AcceptVerbs("GET")] 
    public ActionResult UserComment() 
    { 
        return View(); 
    } 
    [AcceptVerbs("POST")] 
    public ActionResult UserComment(string name, string email, string comment) 
    { 
        ViewData["name"] = name; 
        ViewData["email"] = email; 
        ViewData["comment"] = comment; 
        if (string.IsNullOrEmpty(name)) 
            ModelState.AddModelError("name", "Please enter your name!"); 
        if (!string.IsNullOrEmpty(email) && !email.Contains("@")) 
            ModelState.AddModelError("email", "Please enter a valid e-mail!"); 
        if (string.IsNullOrEmpty(comment)) 
            ModelState.AddModelError("comment", "Please enter a comment!"); 
        if (ViewData.ModelState.IsValid) 
        { 
            // Add to database 
            try 
            { 
                CommentEntities _db = new CommentEntities (); 
                tblComment commentToCreate = new tblComment(); 
                commentToCreate.Name = name; 
                commentToCreate.Email = email; 
                commentToCreate.comment= comment; 
                _db.AddTotblComment(commentToCreate); 
                _db.SaveChanges(); 
            } 
            catch 
            { 
                return View(); 
            } 
        } 
        return View(); 
    } 
}

Summary

In this article, we explored the Entity Framework with ASP.NET MVC. In the next article, I will explore a custom IErrorDataInfo interface.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here