The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
77 views

Linq InsertOnSubmit, DeleteOnSubmit and update not working

I read a couple of posts related to InsertOnSubmit is not working but none of them resolve my issue. Below is my code, I have insert manually a record in my BackupPlan table and when i run a linq ...
0
votes
1answer
280 views

how to update a database using linq to sql

I am trying to change a value stored in a database but I am unsure on how to do that, using (DataClassesDataContext dataContext = new DataClassesDataContext()) { int accounttype = 1; int id = ...
2
votes
2answers
168 views

submit text from “div contenteditable”

I'm trying to find a working solution, but there is nothing useful at the moment. I have the following form: <form id="searchform" action="/search" onsubmit="putText()"> <div ...
0
votes
1answer
148 views

LINQ saying invalid arguments for insertonsubmit

I seem to be running into this issue with inserting data into a table in a SQL Server 08R2 using LINQ in C#. No matter what I've tried I keep getting an error with INSERTONSUBMIT(). Here is the ...
0
votes
0answers
53 views

LINQ instead of insertOnSubmit()

So I was using an excel reader to read in a spreadhsheet. Compare the values on the SS to values I have in the DB. If they are different then update...so shorthand... ClarkeDBDataContext context = ...
0
votes
1answer
313 views

Linq DataContext InsertOnSubmit statement Inserts only NULL values in the table

Please help!!! I have this simple piece of code, I don't have a clue why is not doing what is supposed to do which is insert the data contained in the class, I have not idea what am I doing wrong, ...
0
votes
3answers
127 views

How do I get Id of a record without submitting and re-querying?

I have an ID that is set to auto increment (int obviously). var dc = new DataContext([STRING]); var usersTable = dc.GetTable<Audit_User>(); var user = usersTable.FirstOrDefault(o => ...
0
votes
0answers
159 views

LinqToSQL InsertOnSubmit Issue

I've class contact that has associate with class account and city. City has associate with class state, when I try to insert new contact data, the associated class is inserted too. How can this happen ...
0
votes
1answer
254 views

InvalidOperationException: The null value cannot be assigned … when calling SubmitChanges

I have a table A with an Identity column. When I insert a row via visualStudio it failed in the SubmitChanges with the following error: InvalidOperationException: The null value cannot be assigned ...
1
vote
2answers
1k views

Can't find InsertOnSubmit() method

I'm new to Entity Framework, and I'm think there is something that I misunderstand here. I'm trying to insert a row in a table, and everywhere I found code example, they call the method ...
2
votes
1answer
314 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
0answers
919 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
425 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, ...
2
votes
1answer
622 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 ...
1
vote
3answers
875 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 ...
0
votes
0answers
466 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
487 views

Linq to Sql: Error on InsertOnSubmit

private Table<Gallery> galleryTable; public GalleryRepository ( string connectionString ) { dc = new DataContext(connectionString); galleryTable = ...
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 ...
0
votes
1answer
812 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 ...
2
votes
1answer
380 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 ...
0
votes
2answers
314 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 ...
16
votes
2answers
3k 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
476 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 ...
1
vote
2answers
713 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
4answers
1k 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
997 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 ...
2
votes
1answer
1k 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 ...