It seems that the only way to call an Sp with Subsonic 3 is as follows:
StoredProcedure sp = new StoredProcedure("NameOfSP");
mySqlCommand.Parameters.Add("@MyVar", SqlDbType.Int).Value = 1;
I remember some time ago that it was possible to call a stored procedure as a function:
SPs.NameOfSP(1);
Is this still possible with SubSonic? If not, what SP wrapper would provide this functionality?