Azure / azure-cosmos-table-dotnet

.NET SDK for Azure Cosmos Table API
14 stars 6 forks source link

Need To Create an IQuerable query as per documentation. #47

Closed gbrohammer closed 4 years ago

gbrohammer commented 4 years ago

According to the documentation: https://docs.microsoft.com/en-us/rest/api/storageservices/writing-linq-queries-against-the-table-service

I should be able to create an IQuerable context.CreateQuery to consume in a downstream OData endpoint using Automapper projection.

Using dotnet core 3.1 and CreateQuery is not availabe on CloudTable.

Why is the method missing and is there a workaround to get an IQuerable to consume in my own OData Controller?

gbrohammer commented 4 years ago

Nevermind, both namespaces are available for the same types when adding the package. Microsoft.WindowsAzure.Storage.Table and Microsoft.Azure.Cosmos.Table

used the wrong one when trying out previous nuget packages.