我想创建一个通用的数据提供程序函数,该函数从读取的SQLite数据返回IEnumerable。
创建了AutoMapper初始化:
cfg.CreateMap<IDataRecord, Layout>()
然后调用CompileMappings(),读取器在命令本身中返回数据,但是映射器无法映射它。 试图为每个字段定义.ForMember()...相同的错误。
public static IEnumerable<T> ExecuteReaderCommand<T>(SQLiteConnection connection, SQLiteCommand command)
{
using (var scope = new TransactionScope())
{
var result = Enumerable.Empty<T>();
try
{
connection.Open();
command.Connection = connection;
var reader = command.ExecuteReader();
result = Mapper.Map<IDataReader, IEnumerable<T>>(reader);
}
catch (Exception ex)
{
_logger.Error(ex, "Can't execute {command}, with {connection}", command, connection);
return result;
}
finally
{
connection.Close();
}
scope.Complete();
return result;
}
}
使用对象->布局内部异常获取未映射...异常。
不确定我缺少什么,但是由于数据在那里,读者可以获取它,但是映射器没有映射它。
答案 0 :(得分:0)
我认为这种方法不好,最终用Dapper解决了问题。推荐它的好工具。 这样,所有映射都可以正确完成,而无需使用Automapper。
public IEnumerable<T> QueryData<T, U>(string sqlCommand, U parameters, string connection)
{
using (var conn = new SQLiteConnection(connection))
{
return conn.Query<T>(sqlCommand, parameters).AsEnumerable();
}
}
再次感谢蒂姆·科里