vote up 1 vote down star

We are using Linq To SQL with our own data context logic that executes the one linq query across multiple databases. When we get the results back, we need the database for each of the rows. So...

I want to have a property on my class that will return the database name (SQL Server, so DB_NAME()). How can I do this in Linq To Sql?


Dave, thanks for the answer, but we have hundreds of databases and don't want to have to add views if possible.

flag

48% accept rate
Question is closed as "no longer relevant". I don't understand. This is a currently applicable problem for anyone that wants to call a system function from linq. – David B Oct 14 '08 at 18:17

closed as no longer relevant by Peter Oct 14 '08 at 15:19

2 Answers

vote up 1 vote down

LINQ to SQL allows you to map views and UDFs to objects. Make a UDF view which executes DB_NAME() and returns it as a column, map it using the designer, and you should be good to go.

link|flag
vote up 1 vote down

Add this in the manual portion of the partial DataContext class

   [Function(Name = "DB_Name", IsComposable = true)]
    public string GetDBName()
    {
        return ((string)(this.ExecuteMethodCall(this, ((MethodInfo)(MethodInfo.GetCurrentMethod()))).ReturnValue));
    }
link|flag

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