Chandru TS

Chandru TS

  • 1.6k
  • 71
  • 2.5k

Receiving list of datas in .Net by executing Stored procedure

Apr 6 2024 5:31 AM

Having a stored procedure which returns list of Students with each user having list of projects

Execute the Stored procedure and receive the Students with their Projects from .Net

List<Student> students = ...................

public class Student
{
    public int StudentId { get; set; }
    public string StudentName{ get; set; }
    public List<Project> Projects { get; set;}
}

public class Project
{
    public int ProjectId { get; set; }
    public string ProjectName { get; set; }
}


Answers (1)