I've an 'product' object that has to update a record in db. Through a 'productCode' I retrieve the object to update using Linq. Which is the most elegant way to overwrite alle the property but not the key one and then save changes?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You will need to access each property anyways, as you fetch a record manually. my recommendation for easiest, fastest and cleanest code:
you could of course try:
but i can almost guarantee this will not work, as product will certainly have an id-property it will try to write to update, which will throw an exception, given the case product is the LINQ-generated type for the table-instance. Be careful to check for type-conformity. also note, that you the SQL-Type of product code should not be text, as this type is incomparable |
||||
|
|