Question

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.

Was it helpful?

Solution

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.

OTHER TIPS

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.

There is a C# client library for Cloud Bigtable, but there is not one for App Engine.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top