Convert SQl query to Linq query in c#

coder rock 396 Reputation points
2024-11-19T19:16:20.94+00:00

Below is my full sql query need to convert into linq query

delcare @personId int=12345

select distinct  p.fName, p.lName, p.personId, p.assignedId,0 doId, isnull(nte.notesId,0)notesId,

	isnull(fnte.fitterNotesId,0)fitterNotesId,

	isnull(nte.requestId,0)requestId,

	isnull(nte.notes,'')notes,

	isnull(prs.firstName,'') CreatedByFirtstName,isnull(prs.lastName,'') CreatedByLastName, fnte.FitterId,

	convert(varchar(10),isnull(fnte.dateCreated,'01/01/1900'),101) createdDate,ISNULL(fnte.createdBy,0)createdBy ,

	isnull(fnte.modifiedBy,0)modifiedBy

from 

(select * from t1 fnte(NOLOCK) where   fnte.status='Notify' and fnte.fitterId=@personId)as fnte

inner join t2 nte(NOLOCK) on nte.fitternotesid = fnte.fitterNotesId

inner join t3 p(NOLOCK) on p.personId=nte.personId

left outer join t4 prs(NOLOCK) on prs.personId = fnte.createdBy 

inner join t5 fo(NOLOCK) on  fo.personId = fnte.fitterId 

and fo.organizationId=p.organizationId  and fo.isActive=1 
```Need above sql query to joins using linq query like below my agenda is to call individual stored procedure the join in c#

var t1=callingt1storedproce();

var t2=callingt2storedproce();

var t3=callingt3storedproce();

var t4=callingt4storedproce();

var t5=callingt5storedproce();

Here how to join above sql query into linq query by using above var list t1,t2,t2,t3,t4, andt5
SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
14,067 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
11,058 questions
0 comments No comments
{count} votes

Accepted answer
  1. Hongrui Yu-MSFT 3,015 Reputation points Microsoft Vendor
    2024-11-20T06:55:05.6466667+00:00

    Hi,@coder rock. Welcome to Microsoft Q&A.

    You could refer to the following code to achieve the function you want.

    int personId = 12345;
    
    var query = from fnte in t1
    			where fnte.status == "Notify" && fnte.fitterId == personId
    			join nte in t2 on fnte.fitterNotesId equals nte.fitternotesid
    			join p in t3 on nte.personId equals p.personId
    			join prs in t4 on fnte.createdBy equals prs.personId into prs_join
    			from prs in prs_join.DefaultIfEmpty()
                join fo in t5 on new { prop1 = fnte.fitterId,prop2 = p.organizationId } equals new { prop1 = fo.personId, prop2 = fo.organizationId }
                where  fo.isActive == 1
    			select new
    			{
    				p.fName,
    				p.lName,
    				p.personId,
    				p.assignedId,
    				doId = 0,
    				notesId = nte.notesId ?? 0,
    				fitterNotesId = fnte.fitterNotesId ?? 0,
    				requestId = nte.requestId ?? 0,
    				notes = nte.notes ?? "",
    				CreatedByFirstName = prs.firstName ?? "",
    				CreatedByLastName = prs.lastName ?? "",
    				fnte.fitterId,
    				createdDate = fnte.dateCreated.HasValue ? fnte.dateCreated.Value.ToString("MM/dd/yyyy") : "01/01/1900",
    				createdBy = fnte.createdBy ?? 0,
    				modifiedBy = fnte.modifiedBy ?? 0
    			};
    var result = query.Distinct().ToList();
    

    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


2 additional answers

Sort by: Most helpful
  1. Bruce (SqlWork.com) 67,401 Reputation points
    2024-11-19T21:02:02.9966667+00:00

    linq does not support calling stored procedure. you can use ef or dapper to map a stored proc results into object collections, then use linq to join the object collections.


  2. Olaf Helper 45,206 Reputation points
    2024-11-20T06:52:17.0966667+00:00

    convert into linq query

    The easier way is to create a stored procedure and call it form Entity Framework (EF).

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.