-
Type:
Bug
-
Status: Closed
-
Priority:
Major - P3
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 2.0
-
Component/s: None
-
Labels:None
For instance, the new FilterDefinitionBuilder expression tree support doesn't account for performing an "equality" test for a single item against an array.
class Person
|
{
|
public string[] Colors;
|
}
|
|
Builders<Person.Filter.Eq(x => x.Colors, "red"); // compile error
|