Probably a silly question:
When I use Dapper alone in a console app, .NET 4.0 I'm able to use optional parameters for .Add.
p.Add("@facility_id", 26);
When I try and do this with ServiceStack.Data referenced I can't use optional parameters. Any idea why?
#if CSHARP30
string name, object value, DbType? dbType, ParameterDirection? direction, int? size
#else
string name, object value = null, DbType? dbType = null, ParameterDirection? direction = null, int? size = null
#endif