Keven van Zuijlen
Results
2
comments of
Keven van Zuijlen
If anyone is looking for a workaround: ```csharp ProductType[] types = [ProductType.Menu, ProductType.Regular]; string[] stringTypes = types.Select(t => t.ToString()).ToArray(); Product[] results = await dbContext.Products .Where(p => stringTypes.Contains(EF.Property(p, "Type"))) .ToArrayAsync(); ```
Got the same issue, I can import a user with the admin role but cannot assign the admin role. We're on the "Team" plan currently 