是否有任何用于使用 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 与它的 REST API 一起使用。在这里,看看: https ://github.com/impetus-opensource/Kundera/tree/trunk/kundera-rest
以供参考。
-维维克
于 2012-09-17T08:17:54.863 回答