| SubSonic: All your database are belong to us |
Ruby On Rails is propelling a new wave of programming - one that drives "Convention Over Configuration". This simple, elegant approach is attracting many developers who find the intricacies and com...
- Recent
- Popular
- Tags (0)
- Subscribers (1)
- Created Issue: ActiveHelper.GetUpdateCommand assumes ModifiedBy is always a StringNovember 20
-
ModifiedBy is always assumed to be String; when it's GUID, a error occurs.
Change line 154 from
cmd.Parameters.Add(modByParamName, userName, DbType.String);
to
cmd.Parameters.Add(modByParamName, userName, BaseSchema.GetColumn(ReservedColumnName.MODIFIED_BY).DataType);
- Reviewed: SubSonic 2.1 Final (Nov 19, 2008)November 19
- Rated 5 Stars (out of 5) - download now!
- Reviewed: SubSonic 2.1 Final (Nov 19, 2008)November 19
- Rated 5 Stars (out of 5) - download now!
- Reviewed: SubSonic 2.1 Final (Nov 19, 2008)November 19
- Rated 5 Stars (out of 5) - download now!
- Commented Issue: polymorphic interface support on collections, tablesNovember 17
-
Please see the following code discussion:
http://actionpack.wekeroad.com/forums/t/1360.aspx
In order to pass collection objects (and table objects) around generically, it seems they need to also support an interface object that defines their existing methods.
Comments: ** Comment from web user: DominionZA **I am so desperate for a feature like this myself. Any news on when (and if) it will be done?
