是否有任何类型的LinqToBigTable库或任何使它与C#链接?我期待与App Engine BigTable集成。BigTable with C#Library
1
A
回答
2
从AppEngine应用程序外部没有直接的方式与AppEngine数据存储进行交互。无法完成。
对于像这样的工作来说,最好的办法就是通过与JSON对话的RESTful接口公开您的AppEngine数据存储。然后,您可以使用Linq-to-JSON以您期望的方式处理数据。
0
Google App Engine唯一支持的语言是Python和Java(通过实验加上Go)。见here。由于这两种语言都不是.net语言,因此您不能在Google App Engine中使用Linq。
相关问题
- 1. Rcpp for library with exit(1)calls
- 2. .net Mef with Enterprise Library 5.0
- 3. Boost C++ code not building,can someone help me with library linking?
- 4. (Boost Library) - boost :: container :: flat_set with boost :: fast_pool_allocator
- 5. C#Enum in C++ Library
- 6. C#NetCDF Library
- 7. C++ Snippets Library
- 8. C#.net Library问题
- 9. Torrent Library for C++,Windows
- 10. C#Open Source RSS Library
- 11. BigTable的设计 - 一个BigTable的细胞
- 12. Bigtable批量插入
- 13. BigTable vs noSQL
- 14. Bigtable实例
- 15. Google Bigtable-primarykey
- 16. C++中的“Pimp my Library”
- 17. C++:BreakPointing into library“lib”files
- 18. Google,Yahoo! OAuth C#Library Twitter的
- 19. Class Library中的C#类库
- 20. Boost Graph Library C++/Power Law
- 21. C++:Eigen Library新手排序
- 22. opencv&C++ with objective-c
- 23. Bigtable导入错误
- 24. NoSQL(BigTable ...)和TimeSeries Data
- 25. C with postgresql
- 26. c#foreach with Action.BeginInvoke
- 27. ”with“macro in C
- 28. Hardy with Objective-C
- 29. sscanf_s with double%c
- 30. SublimeLinter with C++ 11
AppEngine有在BigTable上运行的Datastore。 –