如何使用 C# 驱动程序在 RethinkDB 中过滤数据?

问题描述

尝试使用过滤器从我的 rethinkdb 中获取情感数据,但使用 C# 驱动程序 The data i want to have

似乎无法了解它在 C# 驱动程序中的工作原理

这是我想要用于 c# 的数据资源管理器中的命令

r.db('sitadapt').table('FaceReaderData').filter({type: 'emotionData'})

解决方法

解决方案是HashMap 'double result = R.Db("sitadapt").Table("FaceReaderData").Filter(R.HashMap("type","emotionData")'