You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 9, 2020. It is now read-only.
List<int> parts = new List<int>();
var groupsQ = from grp in _context.Groups
join item in _context.Items on grp.Id equals item.GroupId
where item.PartId.HasValue && parts.Contains(item.PartId.Value)
select grp;
Steps to reproduce
Check for List.Contains(X) when the list is empty.
The issue
Tested sample:
Steps to reproduce
Check for List.Contains(X) when the list is empty.
Error details
Further technical details
Firebird version: 2.5.8
EntityFrameworkCore.FirebirdSql version: 6.1.0
The text was updated successfully, but these errors were encountered: