Click here to Skip to main content
Click here to Skip to main content

How To Run SQL Statement from LINQ

By , 30 Mar 2009
 

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 (Senior)
Egypt Egypt
Member
No Biography provided

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 1memberRichard Deeming7 Apr '09 - 9:15 
GeneralMy vote of 2memberMember 44820466 Apr '09 - 21:13 
GeneralSQL InjectionmemberThomas Gerber31 Mar '09 - 11:58 
GeneralRe: SQL Injection there is no injectionmembereng \ ahmed farag1 Apr '09 - 7:16 
GeneralRe: SQL Injection there is no injectionmemberThomas Gerber1 Apr '09 - 9:06 
GeneralRe: SQL Injection there is no injection [modified]membereng \ ahmed farag12 Apr '09 - 7:09 
GeneralMy vote of 1memberWin Myan30 Mar '09 - 17:49 
This is not a good way of returning objects from sql queries.
GeneralRe: My vote of 1membereng \ ahmed farag31 Mar '09 - 0:51 
GeneralRe: My vote of 1memberTimMerksem7 Apr '09 - 9:24 
GeneralRe: My vote of 1membereng \ ahmed farag8 Apr '09 - 2:09 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 30 Mar 2009
Article Copyright 2009 by Ahmed Farag Ibrahim
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid