You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I set a type handler SqlMapper.AddTypeHandler<Guid>(new GuidTypeHandler());
and issue a query like this conn.Query<Person>("select * from Person where Id = @Id", new { Id = Guid.NewGuid() });
I would expect my type handler to be called to return a properly structured Guid (Endian or other). I don't think it is.
The text was updated successfully, but these errors were encountered:
If I set a type handler
SqlMapper.AddTypeHandler<Guid>(new GuidTypeHandler());
and issue a query like this
conn.Query<Person>("select * from Person where Id = @Id", new { Id = Guid.NewGuid() });
I would expect my type handler to be called to return a properly structured Guid (Endian or other). I don't think it is.
The text was updated successfully, but these errors were encountered: