Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Oracle Entity Framework Core Beta 3 issue

3997120May 12 2019 — edited Aug 23 2019

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.

Comments
Post Details
Added on May 12 2019
2 comments
1,781 views