Skip to content

Commit 2635f08

Browse files
Merge pull request matteobortolazzo#48 from borigas/InEnumArray
$in queries with enums serialized as ints
2 parents a6f2f63 + 356140a commit 2635f08

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/CouchDB.Driver/Translators/ConstantExpressionTranslator.cs

+3
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ private void HandleConstant(object constant)
5656
_sb.Append(JsonConvert.SerializeObject(constant));
5757
}
5858
break;
59+
case TypeCode.Int32:
60+
_sb.Append((int)constant);
61+
break;
5962
default:
6063
_sb.Append(constant);
6164
break;

tests/CouchDB.Driver.UnitTests/Find/Find_Selector_Conditions.cs

+6
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ public void Array_InSingleItem()
9696
Assert.Equal(@"{""selector"":{""age"":{""$in"":[20]}}}", json);
9797
}
9898
[Fact]
99+
public void Array_InEnum()
100+
{
101+
var json = _rebels.Where(r => r.Species.In(new[] { Species.Human, Species.Droid })).ToString();
102+
Assert.Equal(@"{""selector"":{""species"":{""$in"":[0,1]}}}", json);
103+
}
104+
[Fact]
99105
public void Array_NotIn()
100106
{
101107
var json = _rebels.Where(r => !r.Age.In(new[] { 20, 30 })).ToString();

0 commit comments

Comments
 (0)