Is there any sort of LinqToBigTable library out there or anything that makes it link up with C#? I am looking to integrate with App Engine BigTable.
Asked
Active
Viewed 990 times
0
-
AppEngine have Datastore which runs on BigTable. – Shay Erlichmen Jun 13 '12 at 19:45
3 Answers
2
There is no direct way to interact with the AppEngine datastore from outside of an AppEngine application. Can't be done.
Your best bet for making something like this work is to expose your AppEngine datastore through a RESTful interface that talks JSON. Then, you can use Linq-to-JSON to work with the data in the fashion you desire.

Adam Crossland
- 14,198
- 3
- 44
- 54
0
The only supported languages for the Google App Engine are Python and Java (plus Go, experimentally). See here. As neither is a .net language you can't use Linq with the Google App Engine.

Hauke Ingmar Schmidt
- 11,559
- 1
- 42
- 50
0
There is a C# client library for Cloud Bigtable, but there is not one for App Engine.

Colleen S
- 15
- 4