Tagged Questions
The submitchanges tag has no wiki summary.
8
votes
3answers
925 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 ...
7
votes
2answers
6k views
LINQ not updating on .SubmitChanges()
Is there any reason something like this would not work?
This is the logic I have used many times to update a record in a table with LINQ
DataClasses1DataContext db = new DataClasses1DataContext();
...
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 ...
4
votes
1answer
361 views
LINQ to SQL SubmitChangess() progress
I'm using LINQ to SQLto import old DBF files into MSSQL.
I'm reading all rows and adding them to database using ctx.MyTable.InsertOnSubmit(row)
After reading phase is completed I have around 100 000 ...
4
votes
2answers
394 views
LINQ to SQL context.SubmitChanges - How to get error details?
I'm working on an application where a lot of data is inserted into an SQL database at once. I use LINQ to SQL, and have something like this as my insert operation:
foreach (var obj in objects)
{
...
4
votes
1answer
1k views
LINQ problems with NText, Text and Image on SQL server
Apologies up front, because this isn't a question but a solution - but it took a lot of searching to find out the answer and google wasn't much help, so I wanted to give something back to the ...
3
votes
1answer
1k views
LINQ DataContext.SubmitChanges() in C# Reporting “Object reference not set to an instance of an object.”
I think a lot of people have had this issue but I'm not able to fix it or understand why I'm having it. I've been tearing hair out for a couple of hours now.
I'm getting the error, "Object ...
3
votes
4answers
3k 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 ...
2
votes
2answers
121 views
Using SubmitChanges to create a LINQ Transaction
So, I'm trying to make a transaction with LINQ to SQL. I read that if I use SubmitChanges(), it would create a transaction and execute everything and in case of an exception everything would be rolled ...
2
votes
1answer
226 views
Several SubmitChanges in succession very slow
One question:
Why when I use following code
for (int i = 0; i < 10000; i++)
{
Entity e = new Entity();
e.DisplayValue = i.ToString();
ctx.Entities.InsertOnSubmit(e);
}
...
2
votes
1answer
496 views
Inspection of Insert Statement When Using LINQ's SubmitChanges
I want to see what my insert statement would look like as if I was wiring
up an text-based ADO.NET command. How do I do this?
I have been following the below link:
...
2
votes
2answers
486 views
LINQ to SQL - retrieve object, modify, SubmitChanges() creates new objects
I've been battling this for a while. I'm trying to implement a many to one association. I have a bunch of rows in a table, called readings. These accumulate over time, and every now and then I want to ...
2
votes
4answers
1k views
What could be causing db.SubmitChanges() to not work in linq-to-sql?
I've set up a very simple example with LINQ-TO-SQL in WPF.
I can get an object (pageItem) out like this and I can change the property and when I call SubmitChanges() it gives me no error but it ...
2
votes
1answer
794 views
DLINQ- Entities being inserted without .InsertOnSubmit(…)?
I ran into an interesting problem while using DLINQ. When I instantiate an entity, calling .SubmitChanges() on the DataContext will insert a new row into the database - without having ever called ...
1
vote
1answer
47 views
SubmitChanges Get back record immediately
I have a form that adds a record to the database. The primary key is auto incremented. I would like to have the web page redirect to the page that displays the information that was just entered.
For ...
1
vote
0answers
71 views
How reset “new version” of app in appstore
I wonder if there is any way of "resetting" the "new version" of my app in the appStore. NO,
doing a reject of the binary does not seem to be enough.
The problem is the following:
I have this app ...
1
vote
1answer
39 views
Using LINQ add CHILD VALUE always 1
I have the Tables
PatientEligibilit
and
PatientsEligibilitiesDoctorsSpecialties
and
DoctorsSpecialties
PatientEligibilit
has foreign key PatientsEligibilitiesDoctorsSpecialtyID from
...
1
vote
1answer
294 views
LINQ Insertonsubmit very slow compared to legacy SQL Insert statement
I have a large inserting job to perform, say 300000 Inserts.
If I do it the legacy way, I just write a SQL string with blocks of 100 Insert statements, and perform an executeCommand against the DB ...
1
vote
2answers
494 views
ASP.NET Form - The form name\id changes to aspnetForm
I have this code:
<form Name="AddPlace" ID="AddPlace" action="AddPlace.aspx" class="niceform" method="post" runat="server">
That when i try to execute the code i get this instead:
<form ...
1
vote
3answers
238 views
linq submitchanges runs out of memory
I have a database with about 180,000 records. I'm trying to attach a pdf file to each of those records. Each pdf is about 250 kb in size. However, after about a minute my program starts taking about ...
1
vote
2answers
1k views
Row not found or changed LINQ C# error on simple statement - help please
First of all, there is no chance that this is a multi-user issue, as I'm working locally on a dev version of the database.
I am getting the not very explanatory Row not found or changed error being ...
1
vote
0answers
141 views
Linq to sql stop working
hey,
I have strange problem, i've built a prject using the Linq, and most of it works fine,
However sometimes all the Linq's Repository commands stop working, and i'm geeting errors,
the issue solve ...
1
vote
2answers
179 views
linq to sql continue error
i had an error on a linq query when i tried to do SubmitChanges()
the problem is that what ever i try to do in my project now i'm getting the
same error (i guess the linq still tring to do the Error ...
1
vote
0answers
98 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; ...
1
vote
2answers
129 views
Linq SubmitChanges() function - when to call?
When manipulating data using Linq, how often does the SubmitChanges() method have to be called?
In my project, there are a few tables related with foreign keys. In the creation SQL, these foreign ...
1
vote
2answers
267 views
LINQ to SQL - How do stored procedures interact with unsubmited datacontext changes?
Someone here asked:
"Linq-To-Sql enables calling SPs. If this SP executes an update/delete/insert, do I need to SubmitChanges() after it?"
And the answer was:
"No you don't. The code will work. ...
1
vote
1answer
499 views
can't insert new row into a child table with submit changes in a linq to sql app
I can't figure out the correct way to insert a new record in a child table.
There's a single datacontext in the app and the target table (CustNotes) is a child of a table named Customer. There's a ...
1
vote
2answers
650 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
1answer
125 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
1answer
51 views
MVC3 LINQ SubmitChanges Invalid
In the method below db.SubmitChanges is shown as invalid/not recognized by intellisense.
This is my first attempt to update records in a database using LINQ and the method may contain other ...
0
votes
1answer
109 views
ObjectStateManager and Detached entity state
I'm using Entity Framework and some parts of its functionality are still unclear for me. The main things that are hard to understand are:
SubmitChanges process;
Order of invoking ...
0
votes
1answer
51 views
An attempt has been made to Attach or Add an entity that is not new, perhaps having been loaded from another DataContext. This is not supported
My project is divided to PresentationLayer, BusinesLogicLayer and DataAccessLayer. Every created object goes through these layers.
In simplifying:
SetFilter.xaml.cs
FilterFactory fFactory = new ...
0
votes
1answer
39 views
Checking restrictions on insert or submit of linq-to-sql items to db
I would like to implement checking of object data when inserting or submitting the object to sql. Is there some OnInsert or OnSubmit function that I could implement/extend for the automatically ...
0
votes
0answers
82 views
Silverlight: Calling submitChanges() on domain context causes silverlight to crash
I have a an web app that adds an entity to a domain context and attempt to submit changes.
this.organizationContext.Persons.Add(person);
this.organizationContext.SubmitChanges();
However after ...
0
votes
1answer
164 views
ASP.NET MVC3 C# - not all code paths return a value
I'm almost there with this loop!
Controller:
// Hide 'posts'
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Hide (int id)
{
var post = db.tb_SH_Forum_Posts.Single(p => ...
0
votes
1answer
83 views
Linq to SQL SubmitChanges() not working if textbox modified by listbox
In a simple test form, I have a listbox and a textbox. The form is bound to a datacontext, which has a single table. The listbox has two items, and is not bound. The textbox is bound to the ...
0
votes
2answers
699 views
Silverlight 4 wcf ria Saving multiple records
Ok, I'm pretty sure its just a matter of learning... but I have a very normalized db i'm working with so when I save to my product tbl I also have a productDollar tble and so on...
my question is in ...
0
votes
0answers
271 views
Foreign key constraint with dbo.aspnet_Membership", column 'UserId' when inserting new item using Linq detail view
The INSERT statement conflicted with the FOREIGN KEY constraint "FK_JobList_aspnet_Membership". The conflict occurred in database "C:\DOCUMENTS AND ...
0
votes
1answer
410 views
How to catch SqlException in LINQ to SQL
In my WPF application, I'm using LINQ to SQL, so when I call SubmitChanges(), it throws an exception, but I'm unable to catch it.
Here is the relevant code:
try
{
...
0
votes
4answers
427 views
LINQ: SubmitChanges() not updating my record
Not to sound like a broken record here (there a few posts that look like this one) but none of them seem to solve my problem. It seems that when you want to update
private bool resetPassword(string ...
0
votes
1answer
77 views
SubmitChanges Inserts new record for foreign relation instead of use the assigned one
I got the following Tables with valid relations as shown below:
Report
------>ReprotDataSource
--------->SharePointDomain
Now, when i try the following ( link the ...
0
votes
3answers
833 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 ...
0
votes
2answers
371 views
LINQ to SQL SubmitChanges not working FILESTREAM Table
I have some code that inserts data into some tables (one table has a FILESTREAM column) and then calls SubmitChanges after it is done.
db.Log = new System.IO.StreamWriter(@"c:\windows\temp\linq.log") ...
0
votes
1answer
604 views
Linq to SQL InsertOnSubmit for multiple objects
I have a problem with Linq to SQL InsertOnSubmit, which only seems to work for the first item in a table.
For example with the following:
var noteDetail1 = new NoteDetail() { Title = "Test Note ...
0
votes
2answers
155 views
Issue with Updating Changes in LINQ
I'm having an issue with updating the database. The app shows the updated value, but the database does not. No errors returned. My table has a PK. Using DotConnect for Oracle, but the LINQ syntax ...
0
votes
3answers
429 views
How often to call DataContext.SubmitChanges() for a large number of inserts?
How many InsertOnSubmit should I call before calling SubmitChanges? I'm adding data from a web service that can return tens of thousands of records one record at a time. The wrapper class around the ...
0
votes
1answer
124 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 ...
0
votes
1answer
194 views
“Row Not Found or Changed” Error Pops Up Randomly
When I run
DB.SubmitChanges();
I occasionally get an error that reads: "Row not found or changed".
The reason why this error bugs me so much is because there will always a row that should be found ...
0
votes
2answers
683 views
Linq To Sql - DataContext.SubmitChanges() problem
I have a code like this.
DBContext is Datacontext instance.
try
{
TBLORGANISM org = new TBLORGANISM();
org.OrganismDesc = p.Subject;
...
0
votes
2answers
451 views
SubmitChanges doesn't save but removes inserts from change set, no errors
I have a deeper question regarding debug functionality of Linq to Sql SubmitChanges() Function.
I want to save a record in a table of a locally cached db (localdbcache: server SqlExpress 2008 client ...