views:

196

answers:

1

I would like to create a convention class that would ignore properties staring with certain prefix like "ig_". I did try implementing IPropertyConvention interface and calling clear() on columnname property. But this didn't work. Any ideas? Thanks - Fahad

+2  A: 

You can't do it across-the-board currently, you'll need to specify an override or ForTypesThatDeriveFrom call for each entity.

James Gregory
thanks a lot- Fahad
Fahad

related questions