EntityFrameworkCore.UseRowNumberForPaging icon indicating copy to clipboard operation
EntityFrameworkCore.UseRowNumberForPaging copied to clipboard

.net 9 In Clause throws exception

Open luciusli opened this issue 6 months ago • 0 comments

int[] ids = [1, 2, 3];
List<Post> posts = context.Set<Post>().Where(e => ids.Contains(e.Id)).ToList();

throws System.InvalidOperationException: 'Expression '@__ids_0' in the SQL tree does not have a type mapping assigned.'

luciusli avatar Jun 27 '25 04:06 luciusli