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

CRUD Operations using LINQ Entities

Rate me:
Please Sign up or sign in to vote.
4.84/5 (19 votes)
11 Jul 2009CPOL4 min read 118.8K   3.8K   96   8
CRUD operations using LINQ Entities

Table of Contents

Introduction and Goal

This is a pretty simple tutorial dedicated to LINQ newbies who want to learn how to do CRUD operations using LINQ entities. I am sure many experienced LINQ players would criticize me for such a mild article. One of the biggest catches which I found is the in-memory update service by LINQ, which I think for any LINQ newbie is a must to understand.

So we will start with an understanding of the differences between in-memory updates and physical commits and then we will go deep into the code for each database operation. Again this article is one of those small sprints which I need to run so that I can complete the huge LINQ FAQ project.

Image 1

Screen shot of what we are going to talk about

Still New to LINQ - Below are Some Real Quick Starters

  • Are you a complete newbie? Read this.
  • Do you want to define 1-* and *-1 using LINQ? Read this.
  • Issues of multiple trips handled in this article? Read this.
  • Do not know how to call stored procedures using LINQ? Read this.

LINQ In-memory Commits and Physical Commits

Entity objects form the base of LINQ technologies. So when any data is submitted to database, it goes through the LINQ objects. Database operations are done through ‘DataContext’ class. As said previously, entities form the base of LINQ, so all the data is sent to these entities first and then it's routed to the actual physical database. Due to this nature of working database commits is a two step process. The first step is in-memory and final step is physical commits.
In order to do in-memory operation ‘DataContext’ has provided ‘DeleteOnSubmit’ and ‘InsertOnSubmit’ methods. When we call these methods from the ‘DataContext’ class, they add and update data in the entity objects memory. Please note these methods do not change / add new data in the actual database.

Once we are done with the in-memory operations and we want to send all the updates to the database, we need to call ‘SubmitChanges()’ method. This method finally commits data into the physical database.

Image 2

So let’s consider a customer table (customerid, customercode and customername) and see how we can do the in-memory and physical commit operations.

Step 1: Create the Entity Customer Class

So as a first step, we create the entity of customer class as shown in the below code snippet.

C#
[Table(Name = "Customer")]
public class clsCustomerEntity
{
private int _CustomerId;
private string _CustomerCode;
private string _CustomerName;

[Column(DbType = "nvarchar(50)")]
public string CustomerCode
{
set
{
_CustomerCode = value;
}
get
{
return _CustomerCode;
}
}
[Column(DbType = "nvarchar(50)")]
public string CustomerName
{
set
{
_CustomerName = value;
}
get
{
return _CustomerName;
}
}
[Column(DbType = "int", IsPrimaryKey = true,IsDbGenerated=true)]
public int CustomerId
{
set
{
_CustomerId = value;
}
get
{
return _CustomerId;
}
}
}

Step 2: Create using LINQ

Create Data Context

So the first thing is to create a ‘datacontext’ object using the connection string.

C#
DataContext objContext = new DataContext(strConnectionString);

Set the Data for Insert

Once you create the connection using the ‘DataContext’ object, the next step is to create the customer entity object and set the data to the object properties.

C#
clsCustomerEntity objCustomerData = new clsCustomerEntity();
objCustomerData.CustomerCode = txtCustomerCode.Text;
objCustomerData.CustomerName = txtCustomerName.Text;

Do an In-memory Update

We then do an in-memory update in entity objects itself using ‘InsertOnSubmit’ method.

C#
objContext.GetTable<clsCustomerEntity>().InsertOnSubmit(objCustomerData);

Do the Final Physical Commit

Finally we do a physical commit to the actual database. Please note until we call ‘SubmitChanges()’, data is not finally committed to the database.

C#
objContext.SubmitChanges();

The Final Create LINQ Code

Below is the final LINQ code put together:

C#
DataContext objContext = new DataContext(strConnectionString);
clsCustomerEntity objCustomerData = new clsCustomerEntity();
objCustomerData.CustomerCode = txtCustomerCode.Text;
objCustomerData.CustomerName = txtCustomerName.Text;
objContext.GetTable<clsCustomerEntity>().InsertOnSubmit(objCustomerData);
objContext.SubmitChanges();

Step 3: Update using LINQ

So let’s take the next database operation, i.e. update.

Create Data Context

As usual we first need to create a ‘datacontext’ object using the connection string as discussed in the create step:

C#
DataContext objContext = new DataContext(strConnectionString);

Select the Customer LINQ Object Which we want to Update

Get the LINQ object using LINQ query which we want to update:

C#
var MyQuery = from objCustomer in objContext.GetTable<clsCustomerEntity>()
where objCustomer.CustomerId == Convert.ToInt16(txtCustomerId.Text)
select objCustomer;

Finally Set New Values and Update Data to Physical Database

Do the updates and call ‘SubmitChanges()’ to do the final update.

C#
clsCustomerEntity objCustomerData = 
	(clsCustomerEntity)MyQuery.First<clsCustomerEntity>();
objCustomerData.CustomerCode = txtCustomerCode.Text;
objCustomerData.CustomerName = txtCustomerName.Text;
objContext.SubmitChanges();

The Final Code of LINQ Update

Below is what the final LINQ update query looks like.

C#
DataContext objContext = new DataContext(strConnectionString);
var MyQuery = from objCustomer in objContext.GetTable<clsCustomerEntity>()
where objCustomer.CustomerId == Convert.ToInt16(txtCustomerId.Text)
select objCustomer;
clsCustomerEntity objCustomerData = 
	(clsCustomerEntity)MyQuery.First<clsCustomerEntity>();
objCustomerData.CustomerCode = txtCustomerCode.Text;
objCustomerData.CustomerName = txtCustomerName.Text;
objContext.SubmitChanges();

Step 4: Delete using LINQ

Let’s take the next database operation delete.

DeleteOnSubmit

We will not be going through the previous steps like creating data context and selecting LINQ object. Both of them are explained in the previous section. To delete the object from in-memory, we need to call ‘DeleteOnSubmit()’ and to delete from final database, we need use ‘SubmitChanges()’.

C#
objContext.GetTable<clsCustomerEntity>().DeleteOnSubmit(objCustomerData);
objContext.SubmitChanges();

Step 5: Self Explanatory LINQ Select and Read

Now in the final step, selecting and reading the LINQ object by criteria. Below is the code snippet which shows how to fire the LINQ query and set the object value to the ASP.NET UI.

C#
DataContext objContext = new DataContext(strConnectionString);

var MyQuery = from objCustomer in objContext.GetTable<clsCustomerEntity>()
where objCustomer.CustomerId == Convert.ToInt16(txtCustomerId.Text)
select objCustomer;

clsCustomerEntity objCustomerData = 
	(clsCustomerEntity)MyQuery.First<clsCustomerEntity>();
txtCustomerCode.Text = objCustomerData.CustomerCode;
txtCustomerName.Text = objCustomerData.CustomerName;

The LINQ CRUD Code

You can download the complete CRUD source code from here.

For further reading do watch the below interview preparation videos and step by step video series.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect https://www.questpond.com
India India

Comments and Discussions

 
QuestionThank Pin
Member 1026412910-Sep-13 0:26
Member 1026412910-Sep-13 0:26 
Questionthumbsup Pin
nandu.62725-Aug-11 5:42
nandu.62725-Aug-11 5:42 
GeneralThank U Pin
phloem1231-Jun-11 0:11
phloem1231-Jun-11 0:11 
GeneralDoes it work with MySQL Pin
S. Kolic30-Aug-09 22:58
S. Kolic30-Aug-09 22:58 
QuestionUpdate without reselect back the record Pin
Jason Law21-Jul-09 19:48
Jason Law21-Jul-09 19:48 
GeneralGood One Pin
Abhijit Jana14-Jul-09 12:20
professionalAbhijit Jana14-Jul-09 12:20 
GeneralIt's nice Pin
Md. Marufuzzaman11-Jul-09 7:05
professionalMd. Marufuzzaman11-Jul-09 7:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.