winform查询 oracle字段带有双引号 如何查

winform查询 oracle字段带有双引号 怎么查
查询的时候  oracle一个字段存储数据的时候带有双引号 
就是  字段名     “A“
查询的时候 要根据这个字段查找 

”select  *  from  table  where  name = ‘” + tb1.text+“’"


怎么才能加双引号 取到  ” A “   
现在取到的都是 A  select语句查不到
------解决思路----------------------
用转义符不可以么?
------解决思路----------------------
”select  *  from  table  where  name = ‘” + tb1.text.Replace("\"","\"\"")+“’"