0
I have a table in oracle that can only be accessed this way sms."User", when mapping the entity, I did so:
builder.ToTable("sms.Usuario")
When running the project and seeing the log, I see that the EF generates this way for me
FROM "sms.Usuario"
This way causes an error of 'table does not exist'.
How do I solve this problem?
I knew I was doing it the wrong way, because I had to do it a few years ago, but I forgot and I didn’t remember what that called (DB Schema)... I really appreciate the help :)
– LeoHenrique