Does anyone know if is possible to pass table-valued parameter data to a stored procedure with Dapper?
|
feedback
|
|
Yes, we support them but you will need to code your own helpers. For example:
Make sure you properly test performance for table valued params. When I tested this for passing int lists it was significantly slower than passing in multiple params. I am totally not against having some SQL Server specific helpers for dapper in the contrib project, however the core dapper avoids adding vendor specific tricks where possible. | |||||
feedback
|
|
today it isn't. We actually investigated table-valed-parameters for our cheeky "in" implementation ( Your best bet is to log this as an issue on the project site so we can track/prioritise it. It sounds like something will be doable, though, probably similar to the DbString or DynamicParameters options. But today? No. | |||||
feedback
|
|
If you are using MiniProfiler's ProfiledDbCommand, you'll need to cast the
| |||
|
feedback
|