//this will compile as Hotel class
var list = from hotel in this.Hotels
where (hotel.City.Contains(searchCriteria))
orderby hotel.Id
select hotel;
// i is compiled as an int
var i = 5;
// s is compiled as a string
var s = "Hello";
// a is compiled as int[]
var a = new[] { 0, 1, 2 };
// expr is compiled as IEnumerable
// or perhaps IQueryable
var expr =
from c in customers
where c.City == "London"
select c;
// employee is compiled as an anonymous type
var employee = new { Name = "Neeraj", Age = 31 };
Benefits of using Var
It removes code noise eg. redundant code in declaration of generics.
It doesn’t require using directive.
Most obvious use in LINQ and Anonymous type.
Read more: Beyond relational
QR: