Router Control v1.2 CTP2 released

by fkollmann 9/21/2009 10:00:56 AM

The new version adds experimental support for TR-64. There are some major changes going on which will be part of CTP3.

DOWNLOAD, Homepage

Running SQL on Entity Framework

by fkollmann 9/5/2009 12:25:37 AM

Easy and clean:

public static DbConnection GetStoreConnection(this ObjectContext oc)
{
    if (oc == null)
        throw new NullReferenceException("oc is null");

    var conn = (EntityConnection)oc.Connection;

    if (conn.State == ConnectionState.Closed)
        conn.Open();

    return conn.StoreConnection;
}