我有来自Dapper查询的动态结果,其中包含如下记录:
{DapperRow, billing_currency_code = 'USD', count(*) = '6'}
Run Code Online (Sandbox Code Playgroud)
我可以通过使用来访问'USD' rowVariable.billing_currency_code
要获得"6"值我试过rowVariable["count(*)"]和rowVariable.kv["count(*)"],不幸的是没有什么作品?
count(*)在我的情况下,我无法更改列名称
在这种情况下如何从rowVariable类型DapperRow中获取'6'值?
谢谢.
dapper ×1