I want to use Parameterized Queries with a Document Field as well as with the value at a specified Field for Cosmos DB. https://docs.microsoft.com/en-us/azure/cosmos-db/how-to-sql-query#parameterized-queries
For example:
SELECT *
FROM Families f
WHERE @field = @value
I want to be able to specify something like f.lastName for @field, and Smith for @value.
Is this not possible? Trying to do this over the .NET SDK, it doesn't seem to work, no matter what I do.