Pages

Wednesday 15 July 2015

Using IQueryable in linq query

linq is very power full features for query on database. you can use linq with entities, with object with xml and linq to sql.

This post is about usage of IQueryable interface in linq. IQueryable implements IEnumrable interface and return enumerated values.

You can use foreach loop over enumerated values. and no need to cast objects in list data type.

you can learn more about this in This article

No comments:

Post a Comment