Tagged Questions
0
votes
0answers
116 views
DataContext.SubmitChanges Method does not update database
i have used below code to update Account table ..
When i run the project it does not give any error message...but my account table does not update..
Let me know did i done any thing wrong !
...
0
votes
0answers
111 views
NullReferenceException on SubmitChanges when updating so much records
I got a problem while updating about 50,000 records of an entitiy using Linq To Sql. I am processing records in parallel mode so it is faster.
If certain condition appears then I update the SQL - ...
0
votes
1answer
114 views
DataContext.Submit and TransactionScope
Please explain me pseudocode below.
My idea is: 3-nd SubmitChanges will commit o.Status and will not commit o.TransactionId, and my object will get corrupted in database (I mean it will not be ...
0
votes
0answers
129 views
DataContext update and rollback
I'm having a problem with my DataContext. In the following code snippet, I first delete existing objects in my datacontext, and later in same code, adding new again. The problem is, since I'm using ...
0
votes
1answer
1k views
LinQ DataContext - The operation cannot be performed during a call to SubmitChanges
The code which is throwing exception is extremely easy - this is very regular insert and then submit changes statement which looks:
context.tb_dayErrorLog.InsertOnSubmit(data);
...
0
votes
3answers
2k views
Erratic LINQ to SQL Error: “operation cannot be performed during a call to SubmitChanges.”
Okay, so I'm getting this error from the lines:
System.Data.Linq.DataContext.CheckNotInSubmitChanges() +42
System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode) +54
What I'm ...
1
vote
0answers
165 views
please help with sqlite exception
I'm getting this error when the program executes mainDb.SubmitChanges():
INSERT INTO projects
VALUES (@p0)
SELECT CONVERT(Int, SCOPE_IDENTITY()) AS [value]
-- @p0: Input String (Size = 0; Prec = 0; ...
0
votes
1answer
228 views
LINQ DataContext inserts object that is not attached
I have created two separate objects, one of class Order and one of class TempOrder. When I try to insert the TempOrder object in the db using db.TempOrders.InsertOnSubmit(obj) and then calling ...
8
votes
2answers
2k views
Exceptions by DataContext
I've been doing some searching on the internet, but I can't seem to find the awnser. What exceptions can a DataContext throw? Or to be more specific, what exceptions does the ...
0
votes
1answer
318 views
What is the best practice for committing changes using a LINQ2SQL datacontext in a Silverlight application using RIA?
I've got a Silverlight app using RIA services and LINQ2SQL and have objects in my Silverlight app.
I query all the records in a table (via a LINQ query, using a datacontext) in the Silverlight app ...
5
votes
2answers
2k views
Mimicking SQL Insert Trigger with LINQ-to-SQL
Using LINQ-to-SQL, I would like to automatically create child records when inserting the parent entity. Basically, mimicking how an SQL Insert trigger would work, but in-code so that some additional ...
1
vote
2answers
746 views
Using Linq SubmitChanges without TimeStamp and StoredProcedures the same time
I am using Sql tables without rowversion or timestamp. However, I need to use Linq to update certain values in the table. Since Linq cannot know which values to update, I am using a second DataContext ...
0
votes
3answers
602 views
In a datacontext are inserted values not available within the datacontext until after submitchanges?
I'm going through an XML file of articles and the journalist(s) that wrote them. As we are adding the articles into _Data our datacontext we may come across a journalist that needs adding so we do ...
3
votes
6answers
6k views
How to get the TSQL Query from LINQ DataContext.SubmitChanges()
I'm using Linq to SQL. I have a DataContext against which I am .SubmitChanges()'ing. There is an error inserting the identity field, and I'd like to see the query it's using to insert this identity ...