您好我正在使用linq和sql來創建一個窗口serrvice更新一些行,如果在過去的5分鐘內迄今表中有變化,這是什麼我有:從2個不同的數據庫,2個不同的表Linq到SQL bulkupdate
using System;
using System.Data.SqlClient;
using System.Linq;
namespace Prueba
{
internal static class Program
{
private static void Main()
{
int tienda = 9;
var conex = new DataClasses1DataContext();
try
{
var source =
new SqlConnection(
"Server=LAPTOP-VCD9V9KH\\SQLEXPRESS;Database=backoffice;User Id=sa; Password=root;");
var destination =
new SqlConnection(
"Server=LAPTOP-VCD9V9KH\\SQLEXPRESS;Database=Corporativo_PRB;User Id=sa; Password=root;");
source.Open();
destination.Open();
source.CreateCommand();
var infoExistenciases = conex.Info_Existencias.Where(x => x.FechAct > DateTime.Now.AddMinutes(-5));
foreach (var x in infoExistenciases)
{
var cmd2 = new SqlCommand(
"update Info_Corp_Existencias set Existencia =" + x.Existencia + " where sku ='" + x.SKU + "'" +
"AND Tienda =" + tienda, destination);
cmd2.ExecuteNonQuery();
}
source.Close();
destination.Close();
Console.Beep();
}
catch
(Exception e)
{
Console.WriteLine(e);
Console.ReadLine();
throw;
}
}
}
}
到目前爲止,該代碼更新目標服務器的一切,但我真的不能真正找準下來怎麼把一切到一個臨時表,讓LINQ更新它的foreach參數。
謝謝您的時間
因此,不是運行一個更新語句,而是想要使用linq併爲每一行執行update-statement? –
是的,目前它爲每個語句都這樣做,但我需要生成一些批量使用一個連接到數據庫,而不是使用foreach屬性。 – Darkpaladin