Tagged Questions
The insertonsubmit tag has no wiki summary.
13
votes
2answers
2k views
NullReferenceException when doing InsertOnSubmit in LINQ to SQL
In my database I have a table called
StaffMembers
when I bring this into my .net Project as through linq-to-sql an entity class StaffMember is created
Now I have also created a partial class ...
2
votes
1answer
240 views
Linq to SQL “Cannot insert the value NULL” when NOT NULL!
I am massively in need to help. I have spent an entire day when I do not have even an hour to waste on a project. I have a Linq to SQL data layer and am doing a simple insert into the DB using the ...
2
votes
1answer
291 views
Linq to SQL: How to get values added thru InsertOnSubmit but before SubmitChanges?
Having trouble getting this. I need get the values that I have added to a table entity through the InsertOnSubmit method. However I have not yet invoked SubmitChanges on the table.
So, I have this in ...
2
votes
1answer
792 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
38 views
linq delete, insert, submit
i am wondering if i need to continually call SubmitChanges() when i run sequential delete/insert statements on the same data store:
db.SomeTable.DeleteAllOnSubmit( db.SomeTable.Where( p => ...
1
vote
3answers
374 views
ASP.net MVC Linq-to-SQL Insertion Problems
TLDR Summary
I'm having a few issues with ASP.net MVC's InsertOnSubmit() function. How do you build and insert new objects into the database without running into key constraints?
Steps to ...
1
vote
1answer
222 views
[LINQ]InsertOnSubmit NullReferenceException
I have a rather annoying issue with LinqToSql. I have created a class that is derived from the class in the DataContext.
The problem is that as soon as I use "InsertOnSubmit(this);" on this derived ...
1
vote
2answers
333 views
LinqToSql - “insert on submit”
I'm trying to insert a row in to one of my tables,
so I look over the web to find an example for using the DATACONTEXT and found this one:
protected void buttonSave_Click(object sender, EventArgs e)
...
0
votes
0answers
126 views
“A duplicate value cannot be inserted into a unique index. [ Table name = Order,Constraint name = PK_Order ]”
I am building a Windows Phone Application using Mango with SQLCE 4.0 (I think).
I get this error when I am trying to submit a new OrderItem, with context.SubmitChanges() command.
A duplicate ...
0
votes
2answers
108 views
Insert into many-to-many relationship tables
Simple scenario
[ClientTable]: ClientId, ClientName, Phone, Age
[CityTable]: CityID, CityName, Country
[ClientCityTable]: ClientCityID, ClientID, CityID
Client client = new Client("John", 123456789, ...
0
votes
0answers
281 views
Inherited LINQ to SQL class throws NullReferenceException on InsertOnSubmit
In my datacontext, CalcinerDataContext, I have a class, MainData, and a simply inherited class, NewSample (used just to explore this error). The code below runs without any errors:
Dim cdc ...
0
votes
1answer
272 views
Linq to Sql: Error on InsertOnSubmit
private Table<Gallery> galleryTable;
public GalleryRepository ( string connectionString ) {
dc = new DataContext(connectionString);
galleryTable = ...
0
votes
1answer
601 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
1answer
563 views
Getting A LINQ .InsertOnSubmit To Work
I'm trying to get an insert to work using LINQ and am having some difficulties.
I am using this example to base my code: http://msdn.microsoft.com/en-us/library/bb763516.aspx
I have my data object ...
0
votes
2answers
259 views
In which layer to make linq-sql calls as SubmitChanges(), InsertOnSubmit() etc
Which layer is the best layer to make linq-sql calls as SubmitChanges(), InsertOnSubmit() etc.
For example, let's say I have two tables Parent and Child. Child table has foreign key on parent (Child ...
0
votes
3answers
824 views
LINQ to SQL: Read entity while calling “SubmitChanges” causes DuplicateKeyException
I'm experiencing a strange behavior that I really don't know how to work around it. I'm trying to read an entity just after it has been inserted (right after the ExecuteDynamicInsert) and when the ...
0
votes
1answer
696 views
issue with submitChanges() inserting unwanted records in linq
I am using LINQ to insert records in the database. I create these records and keep track of them using a List. Based on some logic, I delete some of the records by deleting from the List. (I am using ...