Entity Core Framework Query is not correct? – Asp.net
I am trying to perform this Query and this is the result that I get from that: SELECT dbo.Show.ShowId, dbo.Show.Name, dbo.Cast.CastId, dbo.Cast.Name, dbo.Cast.Birthday FROM dbo.Show INNER JOIN dbo.Cast ON dbo.Cast.ShowId = dbo.Show.ShowId WHERE dbo.Cast.ShowId=1; This is the output of this…