I have class Zones with properties and i want add data which i read with linq to this properties.
example
List<Zones> z = new List<Zones>
z.add(new Zones(...));
var allZones = from s in db.Zones select s;
How can i add allZones to z generic List?