最近在使用Linq To SQL的时候,为了了解不同Linq语句对性能造成的不同影响,需要获得Linq To SQL生成的SQL语句。
如果是在桌面程序中,只需要
_context.Log = Console.Out;
即可在控制台输出SQL语句。可是在ASP.NET中又该怎么办呢?
这时我想起了StringWriter。用它就可以代替Console.Out帮我们接收输出的日志,保存在一个StringBuilder里。
于是构造一个辅助类:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IO;
using System.Text;
namespace Clowwindy.Models
{
public static class LogHelper
{
public static StringBuilder Log = new StringBuilder();
public static TextWriter In = new StringWriter(Log);
public static string GetAllLog()
{
In.Flush();
return Log.ToString();
}
public static void Clean()
{
Log = new StringBuilder();
In = new StringWriter(Log);
}
}
}
再添加一个页面log.aspx,用来显示日志:
onclick="btn_Clean_Click"/>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Clowwindy.Models;
#p#副标题#e#
namespace Clowwindy
{
public partial class Log : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (Request.UserHostAddress != "127.0.0.1")
{
Response.End();
return;
}
Literal1.Text = LogHelper.GetAllLog().Replace("\n","\n
");
}
protected void btn_Clean_Click(object sender, EventArgs e)
{
LogHelper.Clean();
Literal1.Text = null;
}
}
}
最后在所有new DataContext的地方
加上_context.Log = LogHelper.In:
public Repository()
{
_context = new TDataContext();
_context.Log = LogHelper.In;
}
打开log.aspx,即可看到之前执行的SQL语句。
关键词标签:ASP.NET,SQL语句
相关阅读
热门文章 手把手教你用好LINQ to SQL在.NET环境下为网站增加IP过滤功能ASP.NET 如何避免页面重新整理时重复送出用Asp.net扩展ExtJS
人气排行 asp.net表单提交方法GET\POST在ASP.NET中如何判断用户IE浏览器的版本Asp.net中messagebox的实现方法Asp.net中的web.config配置在ASP.NET MVC中实现大文件异步上传用Iformattable接口控制.Net中文本格式c#.Net经典面试题目用Asp.net扩展ExtJS
查看所有0条评论>>