Using context.Database.Log in MVC web app

前端 未结 3 1752
我在风中等你
我在风中等你 2021-01-17 21:47

Using the guide here, I\'m trying to log the SQL generated by my MVC web application.

The guide uses the line:

context.Database.Log = Console.Write;
         


        
3条回答
  •  终归单人心
    2021-01-17 22:25

    Using a delegate allows you to do write any function taking a string. As a very simple logging to a file, you could do the following:

    context.Database.Log = message => File.AppendText("C:\\mylog.txt").WriteLine(message);
    

    In a web environment, you may wish to use Trace to log this information:

    context.Database.Log = message => Trace.WriteLine(message);
    

    You can see more examples of using delegates on the MSDN page on Anonymous Functions.

提交回复
热议问题