forum

Home / DeveloperSection / Forums / How to select object in list asp.net?

How to select object in list asp.net?

Anonymous User 1786 10-Nov-2014

I'm beginer in ASP NET and I don't know how to select object from list for exemple i have static data in my model:

namespace ProjectMVC.Models
{
    public class Initializer
    {
        public List<Profile> GetProfiles()
        {
            var profile = new List<Profile>(){
                new Profile {
                    Id = 1,
                    Name = "Rohit",
                    SportType = "Spount",
                    Location = "allahabad"
                },
                new Profile {
                    Id = 2,
                    Name = "Pawan",
                    SportType = "Spount",
                    Location = "allahabad"
                },
                new Profile {
                    Id = 3,
                    Name = "Kamlakar",
                    SportType = "Spount",
                    Location = "allahabad"
                },
            };
            return profile;
        }
    }

And i have ajax request wich send an Id of user. For this I have actionresult in controller:

namespace ProjectMVC.Controllers
{
    public class HomeController : Controller
    {
        private readonly Initializer init = new Initializer();
       public ActionResult AddUserAjax(int UserId)
        {
          List<Profile> SomeList = init.GetProfiles();
// here i want to select and return user from list , where UserId == Id from list in model
           }
}


Updated on 11-Nov-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By