I have a table contains a column as CLOB type. It takes a lot of time while fetching from that table by using entity framework. I found a solution for ADO.net oracle command like this:
OracleCommand cmd = new OracleCommand();
cmd.InitialLOBFetchSize = -1;
How can I set InitialLOBFetchSize property for entity framework ?