Is it possible to use JSON with Gridify, ApplyFiltering, GridifyQuery etc? More details below. #256
aerondight997
started this conversation in
General
Replies: 1 comment 3 replies
-
Hey @aerondight997, |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Assuming that I use Entity Framework Core, is it possible, for example, to pass JSON that is similar to this one '{"name": "John", "hobbies": ["Movies", "Football", "Hiking"]}' and perform a search through any of the provided extension methods?
The reason I am asking is that I am trying to avoid Entity-Attribute-Value pattern in one of the projects I am working on and would really like to use JSONB column in PostgreSQL in order to store product specifications (each product will have custom properties and there might be a lot of different types of products depending on requirements). I would use only one column for these specifications and obviously store all the data in JSON format, including nested properties if needed. Gridify looks like a very good tool to perform filtering on the products, however I am unable to find this use case covered anywhere except for the Client Library example, but it only shows the creation of JSON, not consumption by the extension method.
Can anyone help me out? Thanks in advance. :)
Beta Was this translation helpful? Give feedback.
All reactions