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.
I have a list<message> that contains properties of type Guid and DateTime (as well as other properties). …
c# list distinct linq-to-objectsI'm developing an app in C# targeting .NET 3.5. In it, I have 2 similar dictionaries that contain validation criteria for a …
c# dictionary linq-to-objectsConsider the requirement to change a data member on one or more properties of an object that is 5 or 6 levels …
c# linq algorithm linq-to-objectsI have an array of strings of variable length. Currently I have a loop that iterates through the array to …
c# linq-to-objectsThere was a library of dynamic LINQ extensions methods released as a sample with Visual Studio 2008. I'd like to extend …
linq linq-to-sql c#-3.0 linq-to-entities linq-to-objectsWe are implementing some EF data repositories, and we have some queries which would include TOP 1 I have read many …
sql linq entity-framework ienumerable linq-to-objectsIf I have classes of Type A and B: public class A { public int TotalCount; public string Title; } public class …
linq linq-to-objectsI am stumped. I need help. I have a DTO object with duplicates patient address data. I need to get …
vb.net linq linq-to-objectsI have an object, that has many properties but the only two to worry about are: myobject.ID which is …
c# asp.net linq linq-to-objectsvar listair = empcon.OrderBy(x => x.CustomerConnection.OrderBy(y => y.Id)).ToList(); When I am using this statement …
c# linq-to-objects