The term "LINQ to Objects" refers to the use of LINQ queries with any IEnumerable or IEnumerable<T> collection directly, without the use of an intermediate LINQ provider or API such as LINQ to SQL or LINQ to XML.
var selectedRows = from drow in ugTable.Rows .Cast<Infragistics.Win.UltraWinGrid.UltraGridRow>() .Where(drow => drow != null &&…
c# .net linq linq-to-objectsHow do I find and replace a property using Linq in this specific scenario below: public interface IPropertyBag { } public class …
c# linq linq-to-objects .net-3.0I am not using Single in LINQ below, but I am still getting a 'Sequence contains no elements' exception: allNames = …
c# string linq linq-to-objects sequencesplease I need your help with a Linq expression: I have nested objects with lists, this is how the main …
c# linq lambda linq-to-objectsHow do I get the collection of keys from a Lookup<> I created through the .ToLookup() method? I …
c# .net linq linq-to-objects lookupI want to display a customer's accounting history in a DataGridView and I want to have a column that displays …
c# linq linq-to-sql linq-to-objectsI have an ordering query to a List and calling for many times. list = list.OrderBy().ToList(); In this code …
c# performance sql-order-by linq-to-objects tolistIf I wanted to find checked check boxes on an ASP.NET page I could use the following LINQ query. …
asp.net .net-3.5 c#-3.0 linq-to-objectsI'm a bit surprised to find the results of the following code, where I simply want to remove all 3s …
c# linq linq-to-objectsIs it possible to write a query where we get all those characters that could be parsed into int from …
c# linq string c#-4.0 linq-to-objects