Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6136769
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:38:36+00:00 2026-05-23T17:38:36+00:00

I am having problem converting my SQL query to LINQ. How would you create

  • 0

I am having problem converting my SQL query to LINQ. How would you create a case statement in LINQ where clause? Here is my current SQL query, does anyone have any advice?

ALTER PROCEDURE  [dbo].[CustomerBySearch] 

@FirstName VARCHAR(255) = '',
@LastName VARCHAR(255) = '',
@Email VARCHAR(255) = '',
@Phone VARCHAR(30) = ''

AS
BEGIN

SELECT      CustomerId, 
            Title, 
            FirstName, 
            LastName, 
            RegistrationDate, 
            DayPhone, 
            Mobile, 
            LoginEmail 
FROM        CustomerInfo
HAVING      CASE WHEN @FirstName = '' THEN @FirstName ELSE FirstName  END Like @FirstName + '%' 
            AND 
            CASE WHEN @LastName = '' THEN @LastName ELSE LastName  END Like @LastName + '%' 
            AND
            CASE WHEN @Email = '' THEN @Email ELSE LoginEmail  END Like @Email 
            AND
            (
                CASE WHEN @Phone = '' THEN @Phone ELSE DayPhone END LIKE '%' + @Phone
                OR
                CASE WHEN @Phone = '' THEN @Phone ELSE Mobile END LIKE '%' + @Phone
            )
ORDER BY    CustomerId DESC
END
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T17:38:37+00:00Added an answer on May 23, 2026 at 5:38 pm

    I take it this is some sort of filter options function?

    If so, something like this should work with linq…

    var infos = customerInfos;
    
    if(!string.IsNullOfEmpty(firstname))
       infos = infos.Where(i => i.FirstName.Contains(firstname));
    if(!string.IsNullOfEmpty(lastname))
       infos = infos.Where(i => i.LastName.Contains(lastname));
    if(!string.IsNullOfEmpty(email))
       infos = infos.Where(i => i.Email.Contains(email));
    if(!string.IsNullOfEmpty(phone))
       infos = infos.Where(i => i.DayPhone.Contains(phone) || i.Mobile.Contains(phone));
    
    infos = infos.OrderByDescending(i => i.CustomerId);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am having problems converting the following SQL statement to LINQ to Entity. SELECT
I'm having a problem converting my program from VS2005 to VS2008. When I run
I am having no problem converting a string to a byteArray of UTF-16 encoded
I'm having a bit of a problem with converting the result of a MySQL
I have the following SQL that I am having problems converting to HQL. A
I am having a problem converting one of my company's scripts from csh to
I'm having a problem converting an inline assembler function to .asm file. I need
I am having a problem converting a datetime which is in string format but
i having problem in converting this C# code into VB.net. The loadLecturer seem to
I having a problem converting a string into the date format I need. An

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.