vote up 1 vote down star

I have some existing asp.net membership and roles tables in a legacy db and I am mapping them to new entities with Fluent Nhibernate.

I also generate the schema directly from Fluent Nhibernate and I then manually tweak the generated sql script to exclude the existing tables.

Is it possible to say to Fluent Nhibernate to exclude from generation certain tables?

flag

73% accept rate

2 Answers

vote up 0 vote down check

SchemaAction.None() in your ClassMap.

link|flag
I see a SchemaAction enum, but where do I put in my classmap? Just inserting SchemaAction.None(); is not working. – Ronnie Sep 1 at 9:33
vote up 0 vote down

Another option would be to create an attribute, say

public class DoNotAutoPersistAttribute : Attribute
{
}

Then in AutoPersistenceModelGenerator you could check for this attribute in the Where clause of AddEntityAssembly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.