Sto cercando di aggiornare i dati mentre li sto leggendo dal database, vedi sotto. Ma dopo che tutto è finito, i dati non sono stati aggiornati.Perché non posso aggiornare i dati nel database usando LINQ to SQL?
C'è qualche sintassi di transazione che devo specificare? (Quando il debug, posso vedere io ho il record di destra recuperate.)
using (conn = new SqlConnection(MyConnectionString))
using (SqlCommand cmd = new SqlCommand("dbo.MyProcedure", conn))
{
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@Count", count);
conn.Open();
using (SqlDataReader reader = cmd.ExecuteReader(CommandBehavior.CloseConnection))
{
while (reader.Read())
{
// wrapper object, not related to database
SampleModel c = new SampleModel();
c.ID= (string)reader["ID"];
c.Name = (string)reader["Name"];
c.Type = (int)reader["Type"];
// modeList will return to outside, not related to database
modelList.Add(c);
sampleTable1 table1 = context.sampleTable1s.SingleOrDefault(t=> t.id = c.ID);
// try to update the "isRead", but it doesn`t work....!!!
// about the datatype, in the data base, it is "smallInt"
// in linq to sql, it is "short?"
// PS Default value all should be 0
table1.isRead = 1;
context.SubmitChanges(); <--- here, it doesn`t do the job // context is new from Linq to SQL
}
}
conn.Close();
}
Ecco la mia procedura:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE MyProcedure
@Count int = 100
AS
BEGIN
SELECT TOP (@Count)
t1.id AS ID,
t1.name AS Name,
t2.type AS TYPE
FROM sampleTable1 as t1 with (nolock),
sampleTable2 as t2 with (nolock)
WHERE (t1.t2Id = t2.Id)
ORDER BY t1.name asc
END
GO
E se ho messo tutto il mio codice all'interno di TransactionScope
blocco
using (TransactionScope scope = new TransactionScope())
{
// all the C# code above
scope.Complete();
}
Otterrò un'eccezione "MSDTC sul server 'localhost-sqlserver2005' non è disponibile."
E se solo ho messo una parte del codice, non esiste alcuna eccezione, ma i dati vengono aggiornati did`t
using (TransactionScope scope = new TransactionScope())
{
sampleTable1 table1 = context.sampleTable1s.SingleOrDefault(t=> t.id = c.ID);
table1.isRead = 1;
context.SubmitChanges();
scope.Complete();
}
Grazie.
noloack? chiedendo se quello è un errore nella domanda o un SPROC rotto –
Per confermare - cosa è 'table1.isRead' * prima * questo? Applica solo * cambiamenti * effettivi, quindi se era 1 prima, nessun cambiamento. Hai provato a catturare il log ('context.Log = Console.Out;') per vedere cosa sta inviando? (Alternativa simile: utilizzare un profiler SQL) –
@Marc, è un errore di battitura ... – jojo