-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am using Linq to Object, now how can i use some thing like "LIKE" used in sql query to filter data?
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
This post goes into detail as to now LINQ statements work when querying a collection of objects. This topic assumes you have an understanding of how generics, delegates, implicitly typed variables, lambda expressions, object/collection initializers, extension methods and the yield statement work…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In LINQ to Object context ,can i update an object in memory.
I mean i can create new type like
var query =from e in empList
select new {id=e.id,salary=e.salary * (10/100) };
can i update an object?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to write a linq to object query in vb.net, here is the c# version of what I'm trying to achieve (I'm running this in linqpad):
void Main()
{
var items = GetArray(
new {a="a",b="a",c=1}
, new {a="a",b="a",c=2}
, new {a="a",b="b",c=1}
);
(
from i in items…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I can't quite figure out why this Linq Statement isn't working as i would expect:
Dim distinctSurchargesList = (From thisparent As Parent In ThisParentCollection _
From thisChild As Child In thisparent.theseChildren _
…
>>> More