Are all Linq queries(query data from MSSQL) in LinqPad are read only? I can’t edit data, only read it. Right?
Query below produce read only view and I do not find a way to edit data.
from u in Users
where u.Email == "my@mail.com"
select u
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, you can execute any query in LINQPad, including inserts, updates and deletes.
More info about editing data with LINQ to SQL here: