Fiddle Helper

Fiddle Helper provide additional methods to add flexibility on default behavior such as improving the display output or using our template connection strings.

Method Description Example
FiddleHelper.WriteTable(DataTable dt) Display an HTML table in the console output panel using a DataTable. Try it
FiddleHelper.WriteTable(string name, DataTable dt) Display an HTML table with an header in the console output panel using a DataTable.
FiddleHelper.WriteTable(IEnumerable entityList) Display an HTML table in the console output panel using an IEnumerable. Try it
FiddleHelper.WriteTable(string name, IEnumerable entityList) Display an HTML table with an header in the console output panel using an IEnumerable. Try it
FiddleHelper.GetConnectionStringSqlServer() Allow you to connect to an empty SQL Server Database. Try it
FiddleHelper.GetConnectionStringSqlServerNorthwind() Allow you to connect the Northwind SQL Server database template Try it
FiddleHelper.GetConnectionStringSqlServerW3Schools() Allow you to connect the W3School SQL Server database template Try it