I am working with a DB-first entity framework application. Using SQL Server as the DB, which does not have unsigned column types. Is it possible when generating the model from the DB to cause EF to map fields to uint instead of int? (The tables are based on external structures, and most of the fields are uint. As it stands now, I have to cast all the fields to int in order to work with EF.)
I believe this is different than How to use unsigned int / long types with Entity Framework? because I am talking about mapping in a DB-first environment, which is different from what they did there. Also, I am trying to avoid casting, if possible.