Click here to Skip to main content
Licence CPOL
First Posted 30 Mar 2009
Views 17,679
Bookmarked 5 times

How To Run SQL Statement from LINQ

By | 30 Mar 2009 | Article
An article on how to run SQL statement from LINQ

Introduction

Sometimes we need to run a SQL statement from LINQ. This article will show how to do this.

Using the Code

First you create a *.dbml file for mapping your database from 'Add New Item' in Visual Studio.NET 2008. As you know, a query in LINQ is different from a query in SQL. Here I create a method called GetMember which contains a SQL statement as a string which I need to execute from LINQ, and returns a list of members which make this method as datasource to grid view later.

I create this method for searching members by any parameter entered and with each other:

GeoDataContext MemberConnection = new GeoDataContext(); //connection
public List<Member> GetMemberSearchAll(string name, string fname, string MemberNo,
    string QualificationClass, string WorkClass, string GeoID)
{
    var sql = @"SELECT DISTINCT * FROM dbo.Member where MemberCode <> 0";
    if (name != "")
    {
        sql = sql + " and (dbo.Member.MemberName like '%{0}%')";
    }
    if (fname != "")
    {
        sql = sql + "and (dbo.Member.MemberFameName like '%{1}%')";
    }
    if (MemberNo != "")
    {
        sql = sql + "and (dbo.Member.MemberNo = {2})";
    }
    if (QualificationClass != "")
    {
        sql = sql + " and (dbo.Member.QualificationClass = {3})";
    }
    if (WorkClass != "")
    {
        sql = sql + " and (dbo.Member.WorkClass = {4})";
    }
    if (GeoID != "")
    {
        sql = sql + "and (dbo.Member.GeoID ={5})";
    }
    sql = string.Format(sql, name, fname, MemberNo, 
		QualificationClass, WorkClass, GeoID);
    var quary = MemberConnection.ExecuteQuery<Member>(sql);
    return quary.ToList();
}

Here I first formulate strings by both SQL statement and parameter by order, then I execute the method called ExecuteQuery from my connection which takes a parameter as a SQL query. Its summary in documentation of Visual Studio is "Executes SQL queries directly on the database and returns objects" then pass this SQL formatted to it.

Thanks, I hope this will help somebody.

History

  • 30th March, 2009: Initial post 

License

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

About the Author

ahmed farag Ibrahim

Software Developer

Egypt Egypt

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberRichard Deeming9:15 7 Apr '09  
GeneralMy vote of 2 PinmemberMember 448204621:13 6 Apr '09  
GeneralSQL Injection PinmemberThomas Gerber11:58 31 Mar '09  
GeneralRe: SQL Injection there is no injection Pinmembereng \ ahmed farag7:16 1 Apr '09  
GeneralRe: SQL Injection there is no injection PinmemberThomas Gerber9:06 1 Apr '09  
GeneralRe: SQL Injection there is no injection [modified] Pinmembereng \ ahmed farag7:09 12 Apr '09  
GeneralMy vote of 1 PinmemberWin Myan17:49 30 Mar '09  
GeneralRe: My vote of 1 Pinmembereng \ ahmed farag0:51 31 Mar '09  
GeneralRe: My vote of 1 PinmemberTimMerksem9:24 7 Apr '09  
GeneralRe: My vote of 1 Pinmembereng \ ahmed farag2:09 8 Apr '09  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 30 Mar 2009
Article Copyright 2009 by ahmed farag Ibrahim
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid