ExecuteReaderCollection<Cat>("HereKittyKitty", new[]
{
CreateParameter("Name", "")
});
must become...
ExecuteReaderCollection<Cat>("HereKittyKitty", new[]
{
CreateParameter("Name", "", whiteSpaceIsNull:false)
});
If you don't do this you are handing in a null value for Name to HereKittyKitty. This disappoints me.
No comments:
Post a Comment