I have a table with 2 columns; ID (int) and EntityData (JSON)
. I have created a filter object in form of a Dictionary in C#. I want to fetch all rows which satisfy the key-value pair data in my filter.
A sample filter is:
{
"Name": "mike",
"Location": "Lagos"
}
and this should fetch me all rows whose EntityData has Name as mike and Location as Lagos.