Using Linq to SQL and Sql Reporting Services - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T03:33:48Z http://stackoverflow.com/feeds/question/461609 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/461609/using-linq-to-sql-and-sql-reporting-services 4 Using Linq to SQL and Sql Reporting Services jptacek 2009-01-20T14:51:10Z 2009-07-12T19:57:46Z <p>I have a question regarding the integration of business objects developed using Linq To Sql for data query and integrating with Sql Server Reporting Services.</p> <p>We have a set of business objects that query a couple of back end databases that is developed with Linq to SQL. The SQL that gets generated is relatively dynamic (based on the conditions the user selects) and involves multiple joins, some inner, some outer, etc. Linq to SQL worked great for this. However, we ran into issues when we tried to implement reports with SQL Reporting Services after the initial roll out. We didn't have the ability to bind the SSRS reports to our business layer. What we essentially ended up doing is getting the SQL that is executed from SQL Profiler and creating stored procedures, and using the stored procedures in the reports. As one can imagine, this became a problem as we maintained the code, needing to update both our business layer and the stored procedure.</p> <p>I have done some looking and I see that Custom Data Extensions appear to be an approach to do this. Is this the solution to the problem? Does anyone have a better approach? Are there any example of implementing a solution like this using LINQ?</p> <p><a href="http://www.devx.com/dbzone/Article/31336" rel="nofollow">http://www.devx.com/dbzone/Article/31336</a></p> <p>Thanks</p> http://stackoverflow.com/questions/461609/using-linq-to-sql-and-sql-reporting-services/530676#530676 2 Answer by Paul Fox for Using Linq to SQL and Sql Reporting Services Paul Fox 2009-02-10T00:38:09Z 2009-02-10T00:38:09Z <p>BTW, you don't need to use Profiler to see the generated SQL.</p> <blockquote> <p>var query = ( from c in db.Customers where c.LastName = "Someone" select c );</p> <p>// output the query SQL Debug.WriteLine(query);</p> <p>Return query.ToList();</p> </blockquote> <p>Alternatively, what we did was to hook into DataContext's Log property. This writes out our SQL and parameters automatically everytime we hit the database. We have found this very useful to identify unnecessary database calls.</p> <blockquote> <pre><code>public class DataBase : DataBaseModelDataContext { internal DataBase() { } public DataBase(CommonObjects.BaseParameters param) { #If (DEBUG) Log = new DataBaseLoger(); #endIf //(DEBUG) } public override void SubmitChanges(System.Data.Linq.ConflictMode failureMode) { System.Data.Linq.ChangeSet cs = GetChangeSet(); // update audit fields for each insert foreach (object entity in cs.Inserts) { UpdateAuditFields(entity); } // update audit fields for each update foreach (object entity in cs.Updates) { UpdateAuditFields(entity); } base.SubmitChanges(failureMode); } } </code></pre> <p>public class DataBaseLoger : System.IO.TextWriter { public override Encoding Encoding { get { return new System.Text.UTF8Encoding(); } }</p> <pre><code> public override void WriteLine(string value) { System.Diagnostics.Trace.WriteLine(System.DateTime.Now.ToString("hh:mm:ss") + " " + value, "Information"); } public override void WriteLine() { System.Diagnostics.Trace.WriteLine("", "Information"); } public override void WriteLine(string format, params object[] arg) { WriteLine(string.Format(format, arg)); } } </code></pre> </blockquote> http://stackoverflow.com/questions/461609/using-linq-to-sql-and-sql-reporting-services/650086#650086 4 Answer by Leonv for Using Linq to SQL and Sql Reporting Services Leonv 2009-03-16T11:52:05Z 2009-03-16T11:52:05Z <p>Use the ReportViewer control in local mode, against an ObjectDataSource which in turn uses a simple class with "Get" methods, each returning <code>IEnumerable&lt;ClassNeededForReport&gt;</code>.</p> <p>Sample doing the above (minus Linq): <a href="http://msdn.microsoft.com/en-us/library/ms251692" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms251692</a>(VS.80).aspx</p> <p>Just write your "Get" method to use Linq, optionally doing a .ToList() if required.</p> http://stackoverflow.com/questions/461609/using-linq-to-sql-and-sql-reporting-services/1116772#1116772 1 Answer by jptacek for Using Linq to SQL and Sql Reporting Services jptacek 2009-07-12T19:57:46Z 2009-07-12T19:57:46Z <p>Just wanted to close the loop on this a little bit...</p> <p>We have worked through implementing this with a LINQ to SQL application, but it should work fine with EF also.</p> <p>Essentially, it's laid out in the devx article listed above.</p> <p><a href="http://www.devx.com/dbzone/Article/31336" rel="nofollow">http://www.devx.com/dbzone/Article/31336</a></p> <p>There are several things we ran into, one of which is the need to "flatten" our data. We have custom routines to flatten the data into a row set that can be consumed by the SSRS reports. You will also need to pay attention to the setup instructions in the article above.</p> <p>Just a reminder, we need to use the Web Service functions of SSRS in our implementation. If you can utilize the local reports, it's much easier. If you are interested in local reports with your domain model, here is a good series I just ran across that uses nHibernate with SSRS.</p> <p><a href="http://codebetter.com/blogs/peter.van.ooijen/archive/2009/07/01/reporting-against-a-domain-model.aspx" rel="nofollow">http://codebetter.com/blogs/peter.van.ooijen/archive/2009/07/01/reporting-against-a-domain-model.aspx</a></p> <p><a href="http://codebetter.com/blogs/peter.van.ooijen/archive/2009/07/08/domain-driven-reports-adding-custom-code.aspx" rel="nofollow">http://codebetter.com/blogs/peter.van.ooijen/archive/2009/07/08/domain-driven-reports-adding-custom-code.aspx</a></p> <p>John</p>