In The craft
Hypersonic 2.1 Released!
A new version of Hypersonic was release today!
A new feature was added to help retrieve Identities from the insert. The headache of declaring and out parameter in C# is no longer.
public int Insert(User user)
{
List parameters = database.GetParameters(User);
parameters.SelectIdentity();
_database.NonQuery("User_Insert", parameters);
return parameters.Identity();
}
The C# Code Generator for Hypersonic has been updated to support the new out parameter feature.