Hi,
I am using Oracle Entity Framework Core Beta 3 and getting an error "ora-00918: column ambiguously defined" from c# code.
var tblGroup= _accountContext.TblGroups.Where(p => p.Groupid == groupId && p.Isactive == true) .Include("Grouptype")
.FirstOrDefault();
It seems like oracle EF core Beta is joining the table without alias. Before using the Oracle EF core beta i was using the devert dotnetconnect
and i faced the same issue, at that time devert fixed this issue in the dotnetconnect.
https://forums.devart.com/viewtopic.php?f=1&t=35592
So my assumption is that the issue is this Oracle EF Core Beta 3 version.