up vote 2 down vote favorite
share [g+] share [fb]

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.

link|improve this question

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
feedback

closed as off topic by Peter Oct 14 '08 at 15:19

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

up vote 1 down vote accepted

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|improve this answer
feedback

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|improve this answer
feedback

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