Possible Duplicate:
C# 'var' vs specific type performance
In term of performance does it make any difference to use var or IEnumerable in linq? what about IEnumerable or IQueryable? how can we know which one is IEnumerable and which one is IQueryable? for ex: in code below
IEnumerable<CaseTable> test = from x in dataBase.CaseTables
where x.case_id.Equals("12")
select x;