Hi!, I'm using the .net core 2.0, I have seen that you recently implement LIKe and ILIKE functions and wonder is it possible to use prominent pg_trgm extension https://www.postgresql.org/docs/9.6/static/pgtrgm.html that provides fuzzy search functionality?
I suppose It is possible to enable this extension and call similarity() function using raw sql query, But I can't understand how to create index like that:
CREATE INDEX customer_names_on_last_name_idx ON customer_names USING GIN(last_name gin_trgm_ops);
Is it possible to do now?
Hi!, I'm using the .net core 2.0, I have seen that you recently implement LIKe and ILIKE functions and wonder is it possible to use prominent pg_trgm extension https://www.postgresql.org/docs/9.6/static/pgtrgm.html that provides fuzzy search functionality?
I suppose It is possible to enable this extension and call similarity() function using raw sql query, But I can't understand how to create index like that:
CREATE INDEX customer_names_on_last_name_idx ON customer_names USING GIN(last_name gin_trgm_ops);Is it possible to do now?