Welcome to Bangladesh Microsoft Technology Community Sign in | Join | Help

Wednesday, February 06, 2008 - Posts

LINQ Tips - Queries at Runtime in C#

Recently, I came across this great article written by Tomas Petricek, a C# MVP, I thought I would share with you. source:http://tomasp.net/blog/dynamic-linq-queries.aspx Building LINQ Queries at Runtime in C# Since the first beta versions of LINQ we could
posted by Shahed | 0 Comments

LINQ Tips: Querying ArrayList via LINQ

ProblemIf you try to query an ArrayList via LINQ you might be surprised to see that its not supported and throwing an exception. In other words the following query will not work at all. ArrayList students = GetStudents();var query =  from student
posted by Shahed | 0 Comments