What's the best way to do the following...
conn.Query<Foo>(@"SELECT 1, 2, 'ZEBRA'");
Say Foo
has a constructor like so...
public Foo(Bar test, string zebra)
..And Bar
has a constructor like this:
public Bar(int one, int two)
This doesn't work, what would be the best approach to achieve the desired result.