Search a table record that contains and or starts with wildcard character % using the below query works. But how to pass % from C# as string and query the postgres table that contains and or starts with %.
Starts with Query select * from somepostgrestable where table_column like '%%' --ESCAPE '' limit 5;