DbReader icon indicating copy to clipboard operation
DbReader copied to clipboard

A simple and fast database reader for the .Net framework

Results 8 DbReader issues
Sort by recently updated
recently updated
newest added

Possible a delegate to invoked for unmapped fields/properties.

public class TestClass { public SomeEnum? {get;set} }

Throw meaningful exception if the collection property does not at least implement ICollection<T>

Currently, DbReader validates all parameters in the SQL with the parameters supplied to Read. Because ParameterMatcher.Match matches every parameter in the SQL with the supplied parameters, the query will not...