FWIW, I got this to compile and it did fix the defect.

On Dec 30, 2: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].
For more options, visit this group at 
http://groups.google.com/group/nhcdevs?hl=en.

Reply via email to