Older versions of Prime would not have allowed to evaluate a solve block with "Find" symbolically, but Prime 9 does.
But you can't symbolically evaluate a solve block with "odesolve". "odesolve" relies on numerical algorithms and will never return a symbolic result.
If you need a symbolic solution for an ODE, you can't use a solve block with "odesolve" but rather a symbolic evaluation with "solve" as shown in the help here: Solving ODEs Symbolically
Keep in mind that this feature is new and a work in progress. Don't expect it to provide solutions for more complicated ODEs. Nonetheless its worth to give it a try.
But then, are you sure that you really need a symbolic solution?
If you just want to play around and compare the results with different input values you could also use a parametrized solve block.
For example the example from the help: Solving ODEs
Lets make the coefficients of x'' and x and also the first initial value x(0) a variable. As you can see we can turn the solve block into a function x(...).

f1 is the function as given in the help, the other two stem from the same ODE but with different coefficients and initial condition.