I am generating edmx file by pointing Oracle database.By default it maps number(1,0) in oracle to Short data type. I searched and find to add one entry in app.config file/web config file. like this:
<oracle.dataaccess.client>
<settings>
<add name="bool" value="edmmapping number(1,0)" />
</settings>
</oracle.dataaccess.client>
But in my case problem is that all projects in my solution are of class library type with no appconfig file and main startup project is of plugin type. So i am confused,where i can add this entry.Because when i manually add one appconfig file in class library(i know there is no use) it doesn't work as expected.