Click here to Skip to main content
15,884,836 members
Articles / Web Development / ASP.NET

Entity Framework Implementation Using ASP.NET MVP

Rate me:
Please Sign up or sign in to vote.
4.07/5 (10 votes)
13 May 2011GPL33 min read 56.7K   389   17  
Entity Framework Implementation using ASP.NET MVP
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace TestMVPApp.Model
{

	public interface IModel
	{
		List<Tbl_UserDetails> ReturnDetails();
	}


	public class TestModel : IModel
	{
		private Entities textContext = new Entities();
		private Tbl_UserDetails testDetails;
		private IEnumerable<Tbl_UserDetails> detailsList;
		public TestModel() { }

		public bool SaveDetails(string firstName, string middleName, string lastName, string address, string contactNo)
		{
			testDetails = new Tbl_UserDetails()
			{
				FirstName = firstName,
				MiddleName = middleName,
				LastName = lastName,
				Address = address,
				ContactNo = contactNo
			};
			textContext.AddToTbl_UserDetails(testDetails);
			int testValue = textContext.SaveChanges();
			if (testValue > 0)
			{
				return true;
			}
			else
			{
				return false;
			}

		}
		
		public List<Tbl_UserDetails> ReturnDetails()
		{
			//detailsList = from v in textContext.GetDetails() select v;
			return detailsList.ToList<Tbl_UserDetails>();
		}

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer
Nepal Nepal
I am a software developer with knowledge of C, C++, PHP, MySQL, C#.Net, ADO.Net, MSSQL Server, Crystal Reports, Asp.Net, Oracle, Asp.Net MVP, MVC, jQuery, javascript, WebService, WCF, Entity Framework and so on. I love to play on New Technologies.

Comments and Discussions