The submitchanges tag has no wiki summary.
1
vote
1answer
72 views
C# Linq-to-SQL Error on submitChanges()
i have a silly problem with Linq to SQl. I only work with c# for 3 weeks but i thought i understand it.
So, now i´m testing my classes (Entites and Manage classes for them) but i get in the ...
0
votes
0answers
105 views
DataContext.SubmitChanges causes invalidoperationexception when Updating or Deleting
Operating system: Windows Phone 7.5
Language: VB.NET using Visual Studio 2010
Problem:
I have a one-to-many relationship between teachers and courses. One teacher can teach one to many courses. When ...
0
votes
0answers
122 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 !
...
1
vote
1answer
344 views
Simple Linq to SQLIte application hangs on SubmitChanges()
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SQLite;
using System.Data.Linq.Mapping;
using DbLinq.Data.Linq;
namespace LinqToSQLite
{
...
1
vote
1answer
301 views
Linq-to-SQL SubmitChanges not updating physical database
I am new here and only signed up because I desperately need the solution to my problem. I have a VB.NET project that is using a local .MDF file that I have imported into my project. The primary keys ...
0
votes
0answers
120 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
73 views
prevent data insertion in LINQ to Data context (c#)
i want to prevent record insertion when nameTextBox and addressTextBox are null. but it always throws an exception. the exception message is pointed to submitchanges() which is use to insert the ...
0
votes
1answer
120 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 ...
1
vote
0answers
76 views
“SubmitChanges()” method not available on Wpf Application?
I had been working previously on Silverlight, and I got used to call the SubmitChanges method of a DomainService (LinqToEntitiesDomainService<>).
Now I'm working on a Wpf Application and all I ...
0
votes
0answers
147 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 ...
1
vote
1answer
150 views
Check during typing in jquery, not after blur
I have a small problem that is probably easy to fix, but I'm not that good yet. I have written this simple code
$(document).ready(function(){
$('#email').change(function(){
var regexp = ...
0
votes
2answers
177 views
LINQ to SQL How can I submit changes after closing the connection?
I am accessing a database using LINQ, and making changes to the records. I retrieve the records like so:
using(var db = new DatabaseDataContext(connectionString))
{
var query =
from item ...
0
votes
0answers
275 views
LinqPad SubmitChanges Extension Method does not exist
I´m new on Linqpad then I´ve been reading and practicing with it but once I wanted to update a record it fails with the message: The name 'SubmitChanges' does not exist in the current context.
This ...
0
votes
2answers
278 views
AutoIncrement on SubmitChanges in RIA Services
I am using RIA Services with Entity Framework in Silverlight 5. i have a following Foo table;
Fooid
FooName
FooCode
FooRef
Fooid is an auto-increment number - works like a charm on save ...
...
0
votes
1answer
495 views
Silverlight DomainContext Load with Two saperate DomainDataSources
I have a confusion regarding DataContext which i would like someone to confirm or comment please.
In plain english, i believe a DataContext is a container which can be filled with entities upon load.
...
1
vote
1answer
148 views
SubmitChanges internally adds all the fields as where clause, how to get rid of it
I have a table in database with a primary key say emp_pk. Now using LINQ I am trying to perform some operations on it. When I change few properties and call,
context.SubmitChanges();
ideally the ...
1
vote
1answer
631 views
LINQ to SQL SubmitChanges() not work to insert new record
First, I'm pretty new to LINQ to SQL, so this is probably a dumb question, but I'm trying to insert a new record into the database and I keep getting the following error:
The client was unable to ...
1
vote
1answer
193 views
SubmitChanges with LINQ to SQL and User Defined Functions
On the SQL server I create a UDF. Let's name it fnCompanyDetails. It selects some information about a company from several joint tables.
I then drag-and-drop this function in the new .dbml of my VB ...
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
1answer
225 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
1k 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
409 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
99 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 ...
1
vote
1answer
78 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
237 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 ...
2
votes
2answers
585 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 ...
0
votes
1answer
775 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
204 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 ...
1
vote
1answer
102 views
Using LINQ add CHILD VALUE always 1
I have the Tables
PatientEligibilit
and
PatientsEligibilitiesDoctorsSpecialties
and
DoctorsSpecialties
PatientEligibilit
has foreign key PatientsEligibilitiesDoctorsSpecialtyID from
...
0
votes
1answer
1k 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
1answer
927 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
{
...
1
vote
4answers
1k 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 ...
1
vote
1answer
564 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 ...
4
votes
1answer
608 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 ...
0
votes
1answer
116 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 ...
1
vote
3answers
2k 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
393 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 ...
4
votes
3answers
6k 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 ...
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
201 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
304 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 ...
0
votes
2answers
597 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") ...
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
1k 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 ...
1
vote
2answers
244 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
518 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. ...
0
votes
2answers
269 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
1k 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
235 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 ...
4
votes
2answers
619 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)
{
...

