Answers for "linq where c#"

C#
1

linq query select where c#

var queryLondonCustomers = from cust in customers
                           where cust.City == "London"
                           select cust;
Posted by: Guest on November-05-2020
0

linq where c#

// The Where can be used to filter what you need, 
// if you want multiple items to be returned change 
// your variable to a list for example and replace FirstOrDefault with ToList
// For list of integers
List<int> myList = new List<int>(){1,2,3,4};
int singleItem = myList.Where(x => x == 1).FirstOrDefault();

// For list of custom object
List<CustomClassName> myList = new List<CustomClassName>()
{
  new CustomClassName(){ MyIntProp = 1, MyStringProp = "blah" },
  new CustomClassName(){ MyIntProp = 2, MyStringProp = "blah2" },
};
CustomClassName singleItem = myList.Where(x => x.MyIntProp == 1).FirstOrDefault();
CustomClassName singleItemTwo = myList.Where(x => x.MyStringProp == "blah2").FirstOrDefault();
Posted by: Guest on June-07-2021
0

where in linq

dataSource.StateList.Where(s => countryCodes.Contains(s.CountryCode))
Posted by: Guest on June-30-2021
-1

linq where c#

linq in c#
Posted by: Guest on May-14-2021

C# Answers by Framework

Browse Popular Code Answers by Language