Skip to content

How to perform following query in LINQ?

I have a SQL query need to do in LINQ. Can anyone helps in converting? SELECT * FROM profile WHERE ProfileId 1221 AND IsActive = 1 AND ProfileId NOT IN (SELECT ReportingPerson …

Count city and State from 2 different tables

I need to count the number of cities occurrences on 2 different tables. One Table is the Supplier table which has supplier_id, City and State. The second table is consumer with consumer id , City and …