var fDesc=new Array(); fDesc[0] = "LINQ Insight allows executing LINQ queries at design-time directly from Visual Studio without starting a debug session. Express edition is a freeware alternative to the different LINQ debug visualizers - it displays SQL and parameters for LINQ to NHibernate, LINQ to SQL, LINQ to Entities, and LinqConnect. LINQ Insight allows you to test LINQ queries at design-time. Unlike different LINQ debug visualizers, LINQ Insight does not require you to start debugging and step to the LINQ query execution for viewing returned data and generated SQL. LINQ Insight is fully integrated into Visual Studio. You don't need to run external applications and enter your queries to them, just execute LINQ queries right from your code, and view SQL and data without leaving the IDE."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }