var list = _user.FindAll(
filter,
NoTracking: true,
hideDeleted: true,
take: data.Length,
page: data.Page,
orderBy: data.OrderString);
Error: Npgsql.PostgresException: ‘42703: column c.UserId1 does not exist
It gives this error even though I don’t have a column named ‘UserId1’. I’m sure the column’s name is UserId and it exists. What could be the reason for my error?
New contributor
mery is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.