I have a tons of strings and values like "test la'la'la'la'la".
I need to find all ' indexes and insert another ' to string. => "test la''la''la''la''la"
Because of PostgreSQL.
How to do it more effectionaly? I have a list of thousands strings like this, so i need make it as faster as possible.
Maybe need use LINQ?