Получить файл байта
byte[] file = new byte[img.ImageFile.PostedFile.ContentLength];
Ваш запрос (как шаблон)
insert into table file values @file
new SqlParameter("@file",file)
Новый код
[HttpPost]
public ActionResult addimage(HttpPostedFileBase ImageFile)
{
byte[] file = new byte[ImageFile.ContentLength];
using (SqlConnection con = new SqlConnection(connectionString))
{
using (SqlCommand cmd = new SqlCommand("dbo.addimage", con))
{
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@tname", file);
con.Open();
status = cmd.ExecuteNonQuery();
}
}
}