DbDataSource Changelog

What's new in DbDataSource 1.01

Nov 19, 2013
  • Copy this dll to you bin folder and add the following to your web.config:
  • You then can add a datasource in your markup like so:
  • You can also filter the result with LINQ in the Where property and select values with the Select property like so:
  • Where:
  • set.OfType().Where(s => My where expression here)) %>
  • Select:
  • set.OfType().Select(s => My select expression here)) %>