Closed GoogleCodeExporter closed 8 years ago
Wow. I have no reason to doubt what you say, but that is really odd. Definitely
one for the next build!
Original comment by marc.gravell
on 20 Jun 2013 at 5:35
Yep, this one certainly drove me batty trying to figure it out. What helped me
peg it down is that other enumerations deserialized fine on this class.
Original comment by alibhai....@gmail.com
on 20 Jun 2013 at 6:08
This is still a thing! I had a Status field which, once changed to
SystemStatus, worked like a charm. That's a hum-dinger to track down...
Original comment by qerims@gmail.com
on 16 Apr 2014 at 1:59
This passes fine; cannot repro; I'm committing the test - can you help me repro
at all?
public void Issue142_Status()
{
var row1 = connection.Query<Item1>("select @Status as [Status]", new { Status = StatusType.Started }).Single();
row1.Status.IsEqualTo(StatusType.Started);
var row2 = connection.Query<Item2>("select @Status as [Status]", new { Status = Status.Started }).Single();
row2.Status.IsEqualTo(Status.Started);
}
Original comment by marc.gravell
on 5 Aug 2014 at 3:56
I can no longer repro this with Dapper 1.25 (albeit on a different project).
Test cases:
- Database field is named "Status"
- Enum value is named "Status"
- Enum is enclosed in a class as a member variable named "Status"
Maybe the other person who reported this will have more luck, as their issue is
only a couple of months recent (mine is from last year).
Original comment by alibhai....@gmail.com
on 5 Aug 2014 at 4:21
I'll go with that! If it's working for you there's no reason to believe it
won't for me.
Original comment by qerims@gmail.com
on 6 Aug 2014 at 10:25
Original comment by marc.gravell
on 6 Aug 2014 at 3:13
Original issue reported on code.google.com by
alibhai....@gmail.com
on 20 Jun 2013 at 5:22