Without looking at your code, it will not be possible to correctly diagnose your problem. However, I have a hunch ...
. GridView , GridView , , .
... , . Entity ORM , (, SQL Server). , EF SQL, , " , SQL"
, , .
UPDATE:
, :
1.) . , .
2.) , () , LINQ to Object, , . - :
var query = from o in Context.Orders
where o.Price > 100
select o;
var orders = from order in query.ToList()
where order.ComputedColumn == 42
select order;
, , , .