-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: bug report
PostPosted: Sun Oct 16, 2005 1:19 am 
at Mapping/Column.cs line 137
Code:
/// <summary>
/// Gets an Alias for the column name.
/// </summary>
/// <param name="d">The <see cref="Dialect.Dialect"/> that contains the rules for Aliasing.</param>
/// <param name="suffix">A string to use as the suffix for the Alias.</param>
/// <returns>
/// A string that can be used as the alias for this Column.
/// </returns>
public string Alias( Dialect.Dialect d, string suffix )
{
   if( quoted || name[0] == StringHelper.SingleQuote || char.IsDigit( name, 0 ) )
   {
      return "y" + uniqueInteger.ToString() + StringHelper.Underscore;
   }

                .....
}


should be modified to :

Code:
public string Alias( Dialect.Dialect d, string suffix )
{
   if( quoted || name[0] == StringHelper.SingleQuote || char.IsDigit( name, 0 ) )
   {
      return "y" + uniqueInteger.ToString() + suffix + uniqueInteger.ToString() + StringHelper.Underscore;
   }

                .......
}


Top
  
 
 Post subject:
PostPosted: Sun Oct 16, 2005 7:58 am 
Contributor
Contributor

Joined: Thu May 12, 2005 9:45 am
Posts: 593
Location: nhibernate.org
Thanks for the report.
Can you create a JIRA Issue for it?

_________________
Pierre Henri Kuaté.
Get NHibernate in Action Now!


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.