I have this query
var empno = (from LApp in db.Employees
select new { LApp.EmployeeNumber }).ToList();
when executed I have this in empno
what I want is to trim the starting zeros and store it in empno
i.e {EmployeeNumber="2"} and so on... How is it possible?