I am using linq join to get data from two tables. But my second table has multiple records corresponding to first table. And i want only first record from second table .
Table student
id     name 
1      a1
2      b1
Table images
id   image         studentId
1    1.jpg            1
2    2.jpg            1
3    3.jpg            2
4    4.jpg            2
Result should be 
id  name image
1   a1   1.jpg
2   b1   3.jpg  
I am using the following code. and its returning four records.
 public IEnumerable<StudentBean> getStudent()
        {
             return (from p in context.student
                     join r in context.images
                      on p.id equals r.studentId
                     select new StudentBean
                    {id=p.id,
                     name =p.name,
                     image=r.image
                    }).ToList<StudentBean>();
        }
                ...
join r in context.images
on p.id equals r.studentId into imgs
from r in imgs.Take(1)
...
                        Your can write subquery here:
return (from p in context.student
        select new StudentBean
               {
                 id=p.id,
                 name =p.name,
                 image=(from r in context.images 
                        where r.studentId == p.id
                        select r).First().image
                }).ToList<StudentBean>();
or if there is chance that in Images table no row matches then you need to work around this way to prevent Null Reference Exeption:
return (from p in context.student
        let Image = (from r in context.images 
                        where r.studentId == p.id
                        select r).FirstOrDefault()
        select new StudentBean
               {
                 id=p.id,
                 name = p.name,
                 image = Image != null ? Image.image : null
                }).ToList<StudentBean>();
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With