tags:

views:

293

answers:

1

Is there a recommended methodology / technique for accessing YQL from ASP.NET (&MVC). I'm Thinking something like LINQ ? I'd like to be able to treat it like a local SQL DB as much as possible.

A: 

For accessing I don't know if it's possible (now) to use LINQ, but what about using Json.NET for results? Don't know about performance, but you could use LINQ to JSON.

GmonC