1
是否有任何使用HBase的ORM .Net解決方案?類似於Kundera中提出的概念,但是.Net客戶端堆棧?.Net ORM for Hbase/Cassandra/MongoDB
是否有任何使用HBase的ORM .Net解決方案?類似於Kundera中提出的概念,但是.Net客戶端堆棧?.Net ORM for Hbase/Cassandra/MongoDB
有NoRM MongoDB的 下面是從他們的網站的樣本:
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;
}
我覺得你還是可以用昆德拉與它的REST API。在這裏,看看: https://github.com/impetus-opensource/Kundera/tree/trunk/kundera-rest
僅供參考。
-Vivek