Environment installation and configuration
1. download and install the latest Microsoft version of LINQ. The download URL is:
Http://www.microsoft.com/downloads/details.aspx? Familyid = 1e902c21-340c-4d13-9f04-70eb5e3dceea & displaylang = en
There is a bug in the installation process of LINQ. I installed VS 2005 on two machines, but during the installation processProgramVs2005 is not installed on the machine. Since the premise of installing LINQ is that vs must be installed on the machine, I Have To temporarily install visual web developer on the machine? 2005 express edition, the expressedition is about 40 MB. It takes me 10 minutes to download and install it.
2. Download The blinq tool. It is based on LINQ and can quickly generate a development interface through the specified database. The download URL is:
Http://www.asp.net/sandbox/app_BLINQ.aspx? Tabid = 62
2. Getting Started
1.blinqafter installation is complete, the installation directory is as follows, which is very simple, with only one runtime program blinq.exe. For more information, see readme. rtf.
2. Now let's take a quick look at how blinq quickly develops Asp.net databases. Enter:
Blinq/T: D: \ linqtest/Server: XXX. x: 8800 \ w_ins/User: SA/password: wowinside/Database: northwind
As long as the parameters are correct, the webapp created at D: \ linqtest will be displayed in a few seconds, so that blinq will generate a database management interface for us. (The northwind here is an example database in the SQL database)
The simplest format of blinq:
Blinq/T: target directory/Server: database server name/User: Database User/password: Password/Database: Database Name
Note that ":" Do not add spaces to the backend. Otherwise, blinq will display errors.
3. In VS 2005, open the website as a file directory and press run to see the results of blinq.
I) northwind database Homepage
Ii) The gridview and detail interfaces of the ordersdetails table are automatically generated by the system. These basic operations can be completed to add, modify, and delete the orderdetails table, and the paging and sorting functions can be implemented.
4. we can see from the above several processes that blinq can quickly generate the corresponding gridview and detailview Asp.net pages for all the tables in the specified database, basically implementing the management of database tables, it can greatly save development time for developing software prototypes or managing backend databases.