Answers for "where in linq c#"

C#
1

linq where

// The LINQ Where can be used to filter in a collection.
// It will return a Enumerable that contains all of the matching elements

var names = new List<string>() {"John", "Jane", "William"};

//I use ToLower to get any name that contains a J, Capital or not.
var namesWithJ = names.Where(n => n.ToLower().Contains("j"));

//Returns IEnumerable<string> that contains ["John", "Jane"]
Posted by: Guest on November-09-2021
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

where in used in linq c#

var myInClause = new string[] {"One", "Two", "Three"};

var results = from x in MyTable
              where myInClause.Contains(x.SomeColumn)
              select x;
// OR
var results = MyTable.Where(x => myInClause.Contains(x.SomeColumn));
Posted by: Guest on August-17-2021
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
-1

linq where c#

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

C# Answers by Framework

Browse Popular Code Answers by Language