0

I am trying to set an inheritance in Entity-Framework, I want to set the mapping when BooleanColumn = True.

I am unable to do so.

Shimmy Weitzhandler
  • 101,809
  • 122
  • 424
  • 632

1 Answers1

1

This only works if the Boolean column isn't also a Property.

So make sure you aren't also trying to map that column to a property of the Entity.

Alex James
  • 20,874
  • 3
  • 50
  • 49