Hi All, I want to display first five records using entity frameworks using ASP.NET MVC. My code is below : I want to find first 5 records. Please can anyone help. Thank you.
var screens = db.AssignedScreen.Take(5).ToList();