-
Notifications
You must be signed in to change notification settings - Fork 687
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Component convention and column prefix mayhem #161
Comments
cc @yngvebn |
Thanks! A workaround is to replace .Column(instance.Name) with .Column(string.Empty) |
Nice workaround :) |
May be I'm doing this wrong, but with this config https://gist.github.com/chester89/4990411 my convention isn't even called :( |
yep, and that's exactly what happens when I try to do this via public API. |
I need your help here, guys. It seems I'm applying conventions in a wrong way - since it's not being honored |
👍 |
The same issue. |
See: http://stackoverflow.com/questions/11051515/fluentnhibernate-doubles-columnname-when-using-icomponentconvention-maps-v1-3-0
This works in v.717 (IComponentConvention) :
Using the above convention I can map the name of my database column to the name of the component property. But in v.727 the hbm suddenly looks like this:
Making the column name in the database the name of the component property x 2. Is there a new way of creating component conventions in v727 of fluent nhibernate?
The text was updated successfully, but these errors were encountered: