Test for issue #220

parent 05e11828
...@@ -4142,6 +4142,13 @@ public void ExplicitConstructors() ...@@ -4142,6 +4142,13 @@ public void ExplicitConstructors()
rows[0].Field_1.IsEqualTo(1); rows[0].Field_1.IsEqualTo(1);
rows[0].GetWentThroughProperConstructor().IsTrue(); rows[0].GetWentThroughProperConstructor().IsTrue();
} }
public void Issue220_InParameterCanBeSpecifiedInAnyCase()
{
connection.Query<int>("select * from (select 1 as Id) as X where Id in @ids", new {Ids = new[] {1}})
.IsSequenceEqualTo(new[] {1});
}
#if POSTGRESQL #if POSTGRESQL
class Cat class Cat
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment