public ActionResult Newcars(string id)
{
string prod_data = (from p in db.ProductsHondaofConyers2s where p.TagNo == data select p.Quality_ValueAnalysis);
ProductsHondaofConyers2 p1 = db.ProductsHondaofConyers2s.Single(x => x.TagNo==id);
return View(p1);
}
In your controller, store the data from your database in a variable.
I am getting an error like this
ERROR:Cannot implicitly convert type 'System.Linq.IQueryable<string>' to 'string'