I want to use dapper to query over dbf files. In my file example.dbf I have two columns:...Value - type NUMERIC...Name - type CHARACTER...I write class ExampleDbf...class ExampleDbf
{
public int Value { get; set; }
public string Name { get; set; }...