I have a simple edmx with 2 tables. The tables are related by a single Navigation Property. (1 to many).
When I run my code I get an Exception: "Invalid Object Name dbo.Enquiries"
There is no dbo.Enquiries in the database (it is actually called dbo.Enquiry), so the error itself is self explanatory. But where is it finding that Name, and how do I fix it?
Edited to show code as requested.
var foo = (from d in context.Dealerships
join e in context.Enquiry
on d.Id equals e.DealershipId
where (d.ParentBusinessId == id)
select d).AsEnumerable();
Here is the sql that is generated.
foo {SELECT
[Extent1].[Id] AS [Id],
[Extent1].[BusinessName] AS [BusinessName]
FROM [dbo].[Dealerships] AS [Extent1]
INNER JOIN [dbo].[Enquiries] AS [Extent2] ON [Extent1].[Id] =
[Extent2].[DealershipId]
WHERE [Extent1].[ParentBusinessId] = @p__linq__0}
But for the life of me I can't see where / how it is deciding to change the name Enquiry to Enquiries on the inner join.