From: NHibernate J. <mik...@us...> - 2006-10-23 01:47:22
|
Use "(" and ")" to enclose the ToString of LogicalExpression.cs --------------------------------------------------------------- Key: NH-765 URL: http://jira.nhibernate.org/browse/NH-765 Project: NHibernate Type: Patch Components: Core Versions: 1.2.0.Beta1 Reporter: Kailuo Wang Priority: Trivial Attachments: LogicExpressionToString.patch - return _lhs.ToString() + ' ' + Op + ' ' + _rhs.ToString(); + return "(" + _lhs.ToString() + ' ' + Op + ' ' + _rhs.ToString() + ")"; -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.nhibernate.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |