I want to use SqlFunctions.StringConvert() in many places in different projects in my solution.

I dont want each project to hold reference to system.data.entity so I decided to put a wrapper in my Common project (all other projects has reference to Common).

How can I write such wrapper? If I am doing:

public static class SqlUtils
{
    public static Func<decimal?, string> StringConvert()
    {
        return x => SqlFunctions.StringConvert(x);
    }

    public static Func<double?, string> StringConvert()
    {
        return x => SqlFunctions.StringConvert(x);
    }        
}

Then I cannot use it like:

query.Where(x => SqlUtils.StringConvert((decimal)x.SerialNumber).Contains(serialNumber));

because entity framework don't know the method SqlUtils.StringConvert.

Any ideas how to do it?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 0 down vote accepted

If you want EF to be able to translate it all down to SQL, you have to more work, see: http://blogs.microsoft.co.il/blogs/gilf/archive/2010/01/01/defining-custom-functions-in-entity-framework.aspx

link|improve this answer
I want to use SqlFunctions and not custom functions. – Naor Oct 20 '11 at 13:43
feedback

you can wrap the functions like as follows, but I don't think it meaningful:

public static class SqlUtils
{
    public static string StringConvert(double? x)
    {
        return SqlFunctions.StringConvert(x);
    }

    public static string StringConvert(decimal? x)
    {
        return SqlFunctions.StringConvert(x);
    }
}
link|improve this answer
Does the EF will know how to use them?? – Naor Oct 20 '11 at 3:05
of course, these two methods are with different signature(different arguments). This has nothing to do with the EF – ojlovecd Oct 20 '11 at 3:09
@ojlovecd - SqlFunctions are EF extensions that EF understands and can compile directly down to SQL. Creating a utility class like this means that EF wont understand anymore how to compile this down to SQL. – Polity Oct 20 '11 at 3:29
@Polity: How can I create this utility without custom functions? – Naor Oct 20 '11 at 13:45
@Naor - See my answer. There is no real way for now to teach EF how to analyze your own functions unfortunatly. I quess you have to stick with holding references or create your own set of functions (for that again see my answer) – Polity Oct 20 '11 at 14:38
feedback

Your Answer

 
or
required, but never shown

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