I've been looking but still haven't found a solution that satisfies the problem. Is it possible to receive the ID of the last row inserted from a table in an Oracle database? I'm using C# and Dapper.Contrib, but the library uses the "select SCOPE_IDENTITY() id"
strategy, which doesn't exist in Oracle.
I know that it is possible with triggers and or procedures, but I would like to know if there is a possibility of receiving this ID without triggers or procedures.