vote up 1 vote down star

I am having an issue with linq updating in linqtosql

from the code below

Dim lqPatientTable As New lqHospitalDataContext
    Dim strPatientId As String
    strPatientId = Me.ucboPatientInfo.SelectedRow.Cells(5).Value

    Dim lqPatientName = (From lqp In lqPatientTable.Patients _
                             Where lqp.PatientID = strPatientId _
                             Select lqp.FirstName, lqp.LastName)
    For Each row In lqPatientName
        row.LastName = utxtPatientLastName.Text
        row.FirstName = utxtPatientFirstName.Text
    Next
    lqPatientTable.SubmitChanges()

Visual Studio tells me that row.LastName is readonly I have not made that asignment anywhere, and I cannot see where the issue is.

flag

6 Answers

vote up 2 vote down check

When you select just individual fields you are creating an anonymous type on the fly that is no longer part of the ORM's change tracking/update mechanism.

You will need to change the select part to be "Select lqp" for this to work.

link|flag
vote up 1 vote down

You assign to row.LastName in the first line of the "For Each" loop.

Are you copmiling with option strict/explicit on or off? If option strict is on that line should not compile.

The reason you are seeing this is when creating an anonymous type for queries which contain an explicit Select clause, all properties on the resulting type will be readonly. It has the same effect as if all of the properties were declared on an anonymous type using the Key field. For Example

Dim x = New With { Key .Name ="foo" }
link|flag
So in order to have write access to the fields, you would have to select the whole object? Select lqp That's good to know... – BenAlabaster Dec 17 '08 at 22:08
In VB the select clause is un-necessary. If it is ommitted VB will select the result of the last LINQ clause. In this case lqp – JaredPar Dec 17 '08 at 23:38
Interesting... you learn something new every day – BenAlabaster Dec 18 '08 at 4:58
vote up 0 vote down

When you created the dbml file for your data context, did it create the LastName property as a readonly field? Open the dbml find the field and check the property to see if it's set to readonly...

link|flag
vote up 0 vote down

Readonly on both is set to false

Option Explicit and Option strict are also both off

link|flag
Where are you getting the ReadOnly property from? – JaredPar Dec 17 '08 at 23:39
vote up 0 vote down

That's the one thing entity framework has better than Linq2Sql (really the only thing!). You can select various fields from different tables, and yet it can still be updateable. With Linq2Sql, if you select from multiple tables (even though here you aren't but when you create a new anonymous type, it's the same idea) it becomes read-only.

link|flag
vote up 0 vote down

Thanks DamienG that fixed the issue, back to the books.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.