Home

update in linqpad 4.42.01

edited October 2012
need to update a property on a single row.
I cannot execute this
Option option = Options.Where(p=> p.UserControlToCall.StartsWith("OptionsEditptid")).FirstOrDefault())
option.Code = "aaa"
entity Option is declared no where (intellisense does not show any singular entities ...all are collections).
I can run this with no problem
Options.Where(p=> p.UserControlToCall.StartsWith("OptionsEditptid")).FirstOrDefault())

Comments

Sign In or Register to comment.