Felix, Thanks for the update, and your hard work on this project!
Cheers, -- John Weldon On Mon, Jan 3, 2011 at 12:32 AM, FaticaLabs <[email protected]> wrote: > John, > Your fix is now in the trunk, and the binary in teh NHforge download > are now updated. > There is actually some testing leak on the configuration part of > foreign keys, mostly because foreign key metadata are fetched from > database. > But no excuse, I need to put more test in that part. > Thanks again, > Felix. > > On Dec 30 2010, 11:29 pm, John Weldon <[email protected]> wrote: > > I ran into an issue with Configured Foreign Keys in the config, and > > traced it down to a typo in the constructor for > > ConfiguredForeignKeyColumnInfo. > > > > I'm having trouble building the dll myself, I can't get dll references > > to the Microsoft Templating dll's right. > > > > Any chance we could get a new binary drop with this fix? > > > > Index: KeyAwareMetadataStrategy.cs > > =================================================================== > > --- KeyAwareMetadataStrategy.cs (revision 1530) > > +++ KeyAwareMetadataStrategy.cs (working copy) > > @@ -197,7 +197,7 @@ > > ForeignKeyColumnName = cref.localcolumn; > > ForeignKeyTableCatalog = metaData.Catalog; > > ForeignKeyTableSchema = metaData.Schema; > > - ForeignKeyTableSchema = metaData.Name; > > + ForeignKeyTableName = metaData.Name; > > } > > #region IForeignKeyColumnInfo Members > > -- > You received this message because you are subscribed to the Google Groups > "NHibernate Contrib - Development Group" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<nhcdevs%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/nhcdevs?hl=en. > > -- You received this message because you are subscribed to the Google Groups "NHibernate Contrib - Development Group" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/nhcdevs?hl=en.
