In VS2015 im using web application with OracleDB and i'm trying to do the connection with Entitydatasource wizard.Everything works fine and smooth even though i have EF6 but if any of the tables im trying to load has a Boolean type (number(1,0) in database) the wizard crashes(It says that its only compatible with ef5 etc..).
I tried to change the type from model properties to int16 but then project throws error for wrong mapping.I read somewhere that EntityDatasource recognize true or false for Boolean but its mapped by default from oracle to recognize Boolean as number(1,0). So i guess there is a conflict there.