I have this following code in one of my SO question ,
public IQueryable<Materials> GetMaterial(int id)
{
return from m in db.Materials
join Mt in db.MeasurementTypes on m.MeasurementTypeId equals Mt.Id
where m.Mat_id equals id
select new Materials()
{
Id = Convert.ToInt64(m.Mat_id),
Mat_Name = m.Mat_Name,
Mes_Name = Mt.Name,
};
}
Look at the code from the forth line it is far right so that vertical scroll bar is seen...
I have to select all the code from the 4th line till }; and move to left still further so that i can eliminate vertical scrollbar.......
I tried Shift+Tab what it does it takes focus to the title textbox... Any suggestion...
