Access YQL from ASP.NET and MVC

Is there a recommended technique / method for accessing YQL from ASP.NET (& MVC). Did I think something about LINQ? I would like to be able to treat it as a local SQL database as much as possible.

+3
source share
1 answer

For access, I don't know if it is possible (now) to use LINQ, but what about using Json.NET to get the results? I don't know about performance, but you can use LINQ to JSON .

0
source

Source: https://habr.com/ru/post/1721477/


All Articles