End Google Ads 201810 - BS.net 01 --> // dtdevs is a DataTable
// PVdataDev is my dataclass created by VS xsd tool
var q = from r in dtdevs.AsEnumerable () select new PVdataDev { pvname = r["pvname"].ToString (), dtype = r["dtype"].ToString (), beamline = r["beamline"].ToString () };My question is that I would like to 'select' all the fields in PVdataDev (I have some 25) without specifying each (like the 3 above etc).

Is this possible ?
Amien