Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mongo ネイティブ API では、次のことが可能です。
db.collection.find({ "フィールド" : { $gt: 値1, $lt: 値2 } } ); // value1 < フィールド < 値
NoRMで同じことを達成するにはどうすればよいですか
よろしく、 ドミトリー・エゴロフ
このサポートをレポに追加しただけで、Adam は次のことを行うための LINQ サポートを追加しました..
collection.Find({"field" : Q.GreaterThan(value1).And(Q.GreaterThan(value2))});