I have a model called "Channel" which has a bunch of string properties.
I fetch data from my data source which returns a hash table. The Keys of this table match the property names of my model.
How can I auto-bind the hash table to the Channel model?
The binders from ASP.NET MVC seem to do this but you need to use it in a controller with context. I don't want to pass context into my repository to make it work when fetching data. (although I guess I can if needed)