|
|
Browse by Tags
All Tags » Tips, tricks, c... » Database
-
DataContext Log Property can be used to print generated SQL query or command in the console window as shown below:
db.Log = Console.Out;
If you want to print the SQL query in DebugView or VS Output window you may use DebugWriter class(by Kris Vandermotten) .The usage of the class is pretty simple ...
db.Log = new ...
-
DataGridView supports the special mode (Virtual Mode). The basic idea is that inside the control not stored any data. In given below example of the primitive electronic table, the data stored in the hashtable.The electronic table has a large amount of cells. In this example the number of cells equals to 100000 lines * 100 columns = 10000000. ...
-
This article explains how to manage database of ASP.NET 2.0 Membership & Role services in non-ASP.NET context.
Technorati tags: database, dotnet, asp.net
|
|
|