linq query select top 1 c#

C#
imageName = (from soh in db.tblProductImages
             where soh.product_id == e.ProductId
             select soh.image_name).FirstOrDefault()
Source

Also in C#: