I've started using AnkhSVN for Visual Studio 2010 on some of my hobby projects and have been quite happy with it. You'll still need base SVN to create and manage your repositories, but I'd recommend AnkhSVN!
You can download it here.
http://ankhsvn.open.collab.net/
AnkSVN integrates nicely with Beyond Compare!
Just some random development ramblings mostly related to the Microsoft .NET platform.
Tuesday, July 27, 2010
Monday, July 19, 2010
Entity Framework: How to log generated SQL in ASP.NET
If you want to log/view the generated T-SQL from your Entity Framework context instances to the output window in Visual Studio create a TextWriter derivation and use it like so:
using (MyEntityContext db = new MyEntityContext())
{
db.Log = new OutputDebugWriter();
...
}
class OutputDebugWriter : System.IO.TextWriter
{
public override void Write(char[] buffer, int index, int count)
{
System.Diagnostics.Debug.Write(new string(buffer, index, count));
}
public override void Write(string value)
{
System.Diagnostics.Debug.Write(value);
}
public override Encoding Encoding
{
get { return System.Text.Encoding.Default; }
}
}
Subscribe to:
Posts (Atom)
Can't RDP? How to enable / disable virtual machine firewall for Azure VM
Oh no! I accidentally blocked the RDP port on an Azure virtual machine which resulted in not being able to log into the VM anymore. I did ...
-
Oh no! I accidentally blocked the RDP port on an Azure virtual machine which resulted in not being able to log into the VM anymore. I did ...
-
Here is a full test program that demonstrates how to use SharpZipLib to zip an XElement into a byte array. This allows you to transfer larg...