vote up 1 vote down star

I'd like to create the context extension methods described in Cesar de la Torre's blog post.

But I'm not sure how to declare the class that holds my extension methods.

Griff Townsend wrote:

If I include a reference to this class (or have the class in my namespace), any ObjectContext references will be able to execute these extensions:

ADO.NET Entity Framework extension method intellisense

If you look at the tool tip in the photo above, you should be able to see that I can now cleanly access any function that I add to the EntitySet that I create.

How do I declare the class that holds my extension methods?

flag

66% accept rate

1 Answer

vote up 1 vote down check

You just have to declare a static class :

public static class MyExtensions
{
    // extension methods go here
}
link|flag

Your Answer

Get an OpenID
or

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