c# - Table per type in fluent nhibernate using IAutoMappingOverride -


is possible create table per type mapping using fluent nhibernate iautomappingoverride interface? want avoid writing out full mapping models.

not using iautomappingoverride automappingconfiguration

class myautomappingconfiguration : defaultautomappingconfiguration {     public override bool isdiscriminated(type type)     {         return false; // or whatever classes should discriminate instead of table per type     } } 

Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -