HBase を操作するための ORM .Net ソリューションはありますか? Kunderaで提示された概念に似たものですが、.Net クライアント スタックですか?
1031 次
2 に答える
2
MongoDB 用のNoRMがあります。サイトのサンプルを次に示します。
public Post GetMostRecentPost()
{
Post mostRecentPost;
using(var db = Mongo.Create("mongodb://localhost/BlogApp"))
{
var posts = db.GetCollection<Post>();
//create a LINQ queryable to search the DB.
var q = posts.AsQueryable();
//the ordering happens on the server and only one result will be returned.
mostRecentPost = q.OrderByDescending(y=>y.PostDate).FirstOrDefault();
}
return mostRecentPost;
}
于 2011-12-02T04:29:35.257 に答える
0
KunderaはRESTAPIで引き続き使用できると思います。https://github.com/impetus-opensource/Kundera/tree/trunk/kundera-restを ご覧ください。
参考のために。
-Vivek
于 2012-09-17T08:17:54.863 に答える