How to get a calculated column back in Linq To SQL - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-06T18:30:51Z http://stackoverflow.com/feeds/question/201191 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/201191/how-to-get-a-calculated-column-back-in-linq-to-sql 1 How to get a calculated column back in Linq To SQL [closed] Peter 2008-10-14T13:43:26Z 2008-10-14T14:10:26Z <p>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...</p> <p>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?</p> <p><hr /></p> <p>Dave, thanks for the answer, but we have hundreds of databases and don't want to have to add views if possible.</p> http://stackoverflow.com/questions/201191/how-to-get-a-calculated-column-back-in-linq-to-sql/201242#201242 1 Answer by Dave Markle for How to get a calculated column back in Linq To SQL Dave Markle 2008-10-14T13:52:59Z 2008-10-14T13:52:59Z <p>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.</p> http://stackoverflow.com/questions/201191/how-to-get-a-calculated-column-back-in-linq-to-sql/201302#201302 1 Answer by David B for How to get a calculated column back in Linq To SQL David B 2008-10-14T14:10:26Z 2008-10-14T14:10:26Z <p>Add this in the manual portion of the partial DataContext class</p> <pre><code> [Function(Name = "DB_Name", IsComposable = true)] public string GetDBName() { return ((string)(this.ExecuteMethodCall(this, ((MethodInfo)(MethodInfo.GetCurrentMethod()))).ReturnValue)); } </code></pre>