We are using oracle 12c , and the ORM is Oracle.EntityFrameworkCore . We are using database first methodology and when the database is scaffold with Oracle.EntityFrameworkCore , Number(4,0) is converted to byte in the dbcontext file.
In oracle, if you assign NUMBER(4,0) to a variable you can add up to (9999) into the database. In C#, If you assign a byte to a variable you can only add up to (255) into the memory. With this issue we are having trouble saving and retrieving data.
Can you provide us a solution ?