LINQPad is a LINQ statement debugging tool that functions as follows:1. Execute the LINQ statement directly and view the generated native SQL statement 2, can be combined with linq+c# code for business Scenario debugging 3, the table directly add, modify, delete data 4, Execute SQL statements directly the official download site: http://www.linqpad.net/
version: Free version, provide the most basic features premium: Premium version, need to purchase, provide smart prompt function (very important, can be self-search download) Take SQL Server's Northwind database as an example, and explain how to use it:
First, execute a simple LINQ statement, and view the generated SQL statement
second, execute complex LINQ statements
third, execute LINQ with C # statements
Iv. Editing and deleting data in the table Oracle's statement select p.rowid,p.* from T1, and you can edit the data directly in the query results. SQL Server is relatively less convenient LINQPad provides oracle-like functionality
v. Execute SQL statements directly
From for notes (Wiz)
LINQPad using (Debugging LINQ, Debugging Business Scenarios with LINQ, editing data in a table)