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

  • SEARCH
  • Home
  • 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 6170823
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:06:26+00:00 2026-05-23T23:06:26+00:00

Is there any way to convert following SQL statement into LINQ? select ve.EntityID ,

  • 0

Is there any way to convert following SQL statement into LINQ?

select ve.EntityID
         , fin1.FinanceStat as FinanceStat_New
         , fin2.FinanceStat as FinanceStat_Old
    from ValuationEvents_PIT_New as ve
    left join FinStat_New as Fin1
    on ve.EntityID = Fin1.EntityID
    left join FinStat_Old as Fin2
    on ve.EntityID = Fin2.EntityID
    where Fin1.FinanceStat ne Fin2.FinanceStat
        and Fin2.FinanceStat is not null
        and charindex(Fin1.FinanceStat, 'abc') < 1
        and charindex(Fin1.FinanceStat, 'xyz') < 1

Here is my version of it, but I need extra pair of eyes to look at it.

var result = (from ve in valuationEventsPit
       join fsn in finStatNew on ve.EntityId equals fsn.EntityID into veFsn
       from fin1 in veFsn.DefaultIfEmpty()
       join fso in finStatOld on ve.EntityId equals fso.EntityID into veFso
       from fin2 in veFso.DefaultIfEmpty()
       select new
       {
            ve.EntityId,
            FinStatNew1 = fin1 == null ? null : fin1.FinanceStat,
            FinStatNew2 = fin2 == null ? null : fin2.FinanceStat
       }).
       Where(x => x.FinStatNew1 != null &&
            x.FinStatNew2 != null &&
            x.FinStatNew1 != x.FinStatNew2 &&
            !(x.FinStatNew1.Contains("abc")) &&
            !(x.FinStatNew1.Contains("xyz"))).ToList();

The reason I am excluding x.FinStatNew1 == null because of the charindex(Fin1.FinanceStat, ‘abc’) < 1, which will always return 0 if x.FinStatNew1 is not null and ‘abc’ or ‘xyz’ is not there and if x.FinStatNew1 is null then it will return null and condition still will be false (null < 0).

Thanks a lot for your help.

  • 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-23T23:06:26+00:00Added an answer on May 23, 2026 at 11:06 pm

    I think you could reduce that query even more and rearrange some things to make it more readable. Based on the original query and these are actually LINQ to objects queries, I’d try this:

    const string con1 = "abc";
    const string con2 = "xyz";
    var query =
        from ve in valuationEventPit
        join fsn in finStatNew on ve.EntityId equals fsn.EntityID
        join fso in finStatOld on ve.EntityId equals fso.EntityID
        let FinStatNew = fsn.FinanceStat
        let FinStatOld = fso.FinanceStat
        where FinStatNew != FinStatOld && FinStatOld != null
           && new[]{con1,con2}.All(con => !FinStatNew.Contains(con))
        select new { ve.EntityId, FinStatNew, FinStatOld };
    

    The left join is not necessary here. Since you exclude the null values, we could just ignore them then and do the inner join.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any good way to convert strings like xlSum, xlAverage, and xlCount into
Is there any way to convert a bmp image to jpg/png without losing the
Is there any good way convert a binary (base 2) strings to integers in
Maybe this is a dumb question, but is there any way to convert a
Is there any way we can convert text to speech in an iPhone app?
HI, Is there any 'correct' way to convert an XElement to an XmlNode in
I have the following date string Monday 31 January. Is there any way to
Is there any way to check whether a file is locked without using a
Is there any way to capture the MouseDown even from the .NET 2.0 TextBox
Is there any way to apply an attribute to a model file in ASP.NET

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.