I have a data grid view with a product name and a product name, and I populate these values ββcoming from the database ...
I am using winforms desktop application .....
my problem is that I cannot correctly display the image in the datagridview cell. Check out the chart below.
I want to display this image in the actual product image column for each cell in this column 
this task is very simple in webforms using the datalist control, but I don't know how to display the full image in a grid cell.
can anyone help with this ....
many thanks.......
and this is where I bind datagridview with linq query ..
private void EquipmentFinder_Load(object sender, EventArgs e)
{
var products = from prods in abc.products
select new
{
productid = prods.product_Id,
productname = prods.product_Name,
productimage = prods.product_Image,
productprice = prods.product_Price,
productdescr = prods.product_Description,
};
productbindingsource.DataSource = products;
productgridview.DataSource = productbindingsource;
productgridview.Columns[0].Visible = false;
productgridview.Columns[3].Visible = false;
productgridview.Columns[4].Visible = false;
}