I need to execute a SQL stored procedure every time before I query my ObjectContext. What I want to achieve is setting the CONTEXT_INFO to a value which will be later on used with most of my queries.

Has anyone done that? Is that possible?

[EDIT]

Currently I'm achieving this by opening the connection and executing the stored procedure in my ObjectContext constructor like this:

public partial class MyEntitiesContext
{       
    public MyEntitiesContext(int contextInfo) : this()
    {
        if (Connection.State != ConnectionState.Open)
        {
            Connection.Open(); // open connection if not already open
        }

        var connection = ((EntityConnection)Connection).StoreConnection;

        using (var cmd = connection.CreateCommand())
        {
            // run stored procedure to set ContextInfo to contextInfo
            cmd.CommandType = CommandType.StoredProcedure;
            cmd.CommandText = "[dbo].[SetContextInfo]";
            cmd.Parameters.Add(new SqlParameter("@ci", _contextInfo));
            cmd.ExecuteNonQuery();
        }
        // leave the connection open to reuse later
    }
}

Then in my integration test:

[TestMethod]
public void TestMethod1()
{
    using (var ctx = new MyEntitiesContext(1))
    {               
        Assert.AreEqual(2, ctx.Roles.ToList().Count);
        Assert.AreEqual(2, ctx.Users.ToList().Count);
    }
}

But this requires me to leave the connection open - this is error prone since I will always need CONTEXT_INFO, and another developer might easily do:

[TestMethod]
public void TestMethod2()
{
    using (var ctx = new MyEntitiesContext(1))
    {               
        // do something here
        // ... more here :)
        ctx.Connection.Close(); // then out of the blue comes Close();
        // do something here
        Assert.AreEqual(2, ctx.Roles.ToList().Count);
        Assert.AreEqual(2, ctx.Users.ToList().Count); // this fails since the where
        // clause will be:
        // WHERE ColumnX = CAST(CAST(CONTEXT_INFO() AS BINARY(4)) AS INT)
        // and CONTEXT_INFO is empty - there are no users with ColumnX set to 0
        // while there are 2 users with it set to 1 so this test should pass
    }
}

The above means that I can write the code like in my test and everthing is green (YAY!) but then my colleague uses the code from TestMethod2 somewhere in his business logic and it's all f'd up - and nobody knows where and why since all tests are green :/

[EDIT2]

This blog post certainly does not answer my question but actually solves my problem. Maybe going with NHibernate will be better suited for my purpose :)

link|improve this question

80% accept rate
+1 interesting concept. – tster Oct 14 '10 at 6:08
thanks - what I want it for is filtering Tenant data in a multi-tenant application. I don't want to pass the TenantId to each stored procedure instead I use views which rely on CONTEXT_INFO so I would like to set CONTEXT_INFO always before querying the DB. And still I'd like to use EF. I got this idea from a great blog post: blogs.imeta.co.uk/jyoung/archive/2010/03/22/845.aspx – Maksymilian Majer Oct 14 '10 at 6:42
feedback

2 Answers

We have used this pattern.

But the way we did it was to call the stored procedure as the first opperation inside each db context.

link|improve this answer
This is kind of error prone - maybe could be achieved nicely with AOP (like PostSharp) but still I wouldn't want to it that way. Actually I could write my own ADO.NET provider to wrap SqlClient and always before providing a DbConnection execute the stored procedure first and then return the connection. But I don't know if this is possible with the architecture of SqlClient.. – Maksymilian Majer Oct 14 '10 at 7:56
We placed the code that call the stored procedure in it's own method, then we could do a count and check the number of times that it is called matches the number of times the db context is used. – Shiraz Bhaiji Oct 14 '10 at 8:33
Good idea. Still someone can call ctx.Connection.Close(); and your tests counting ctx uses and method calls are worthless.. – Maksymilian Majer Oct 14 '10 at 9:38
feedback
up vote 0 down vote accepted

Finally I found the answer. I can wrap the connection using the EFProvider wraper toolkit from EFProviderWrappers. To do this I mostly have to derive from EFProviderWrapperConnection and override the DbConnection.Open() method. I already tried it with the Tracing provider and it works fine. Once I test it with my solution I will add more information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.