When I try to add a view using list template to jobview it showing the error, there was an error running the selected code generator unable to retrieve metadata for WebApplication4.Models.jobviewaply
Model Class:
namespace WebApplication4.Models
{
public class jobviewaply
{
[Key]
[Required(ErrorMessage = "*")]
public int id { get; set; }
[Required(ErrorMessage = "*")]
public string jobtitle { get; set; }
[Required(ErrorMessage = "*")]
public int experiance { get; set; }
[Required(ErrorMessage = "*")]
public string vaccancies { get; set; }
[Required(ErrorMessage = "*")]
public string contactnumber { get; set; }
[Required(ErrorMessage = "*")]
public string email { get; set; }
}
}
Controller:
namespace WebApplication4.Controllers
{
public class applyjobviewController : Controller
{
// GET: applyjobview
public ActionResult jobview()
{
var std = new registrationEntities();
var getdata = std.sp_viewjob();
return View(getdata.ToList());
//return View(no.ToList());
}
}
question from:
https://stackoverflow.com/questions/65887845/showing-unable-to-retrieve-metadata-for-model-when-adding-view 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…