Is it possible to pass a FormCollection to Dapper? Will Dapper implement support for a FormCollection as a parameter?
public IActionResult MyForm(FormCollection form)
{
dapper.Query("INSERT INTO.....", form);
}
Yes break out values to dynamicparameters is working, however I would like to request such a simple feature that dapper accepts a formcollection.