update in database C# code example
Example 1: Update data in db .net
var query =
from ord in db.Orders
where ord.OrderID == 11000
select ord;
foreach (Order ord in query)
{
ord.ShipName = "Mariner";
ord.ShipVia = 2;
}
try
{
db.SubmitChanges();
}
catch (Exception e)
{
Console.WriteLine(e);
}
Example 2: how to update database using sql in c#
using (var sqlConnection = new SqlConnection(config.ConnectionString))
{
foreach(var position in positions)
{
var sql =
$"UPDATE BillOfMaterial SET Position = '{pos}' WHERE Creator = '{position.Creator}' AND Idx = '{position.Idx}' AND ArtNumber = '{position.ArtNumber}'";
using (var sqlCommand = new SqlCommand(sql,sqlConnection))
{
sqlConnection.Open();
sqlCommand.ExecuteNonQuery();
sqlConnection.Close();
}
}
}