It is given the following SDE:
$\begin{cases}\mathrm{d}Y_t = (Y_t + B_t) \mathrm{d}B_t + Y_t\mathrm{d}t\\ Y_0 = 1 \end{cases}$
where $(Y_t)$ is the unknown Ito process, while $(B_t)$ is a (known) Brownian motion.
This is an inhomogeneous equation, so I first looked at its homogeneous counterpart: $\mathrm{d}Y_t = Y_t\mathrm{d}t$. This is an ODE, which has the solution: $Y_t=ce^t$.
Now I proceed with the method of variation of constants: I'm looking for the solution of the original equation in the form $V_t = C_te^t$ where $(C_t)$ is a yet unknown Ito process. So what I want is:
$$ \mathrm{d}V_t = (V_t + B_t)\mathrm{d}B_t + V_t\mathrm{d}t $$
What I know is:
$$ \mathrm{d}V_t = \mathrm{d}(C_te^t) = e^t\mathrm{d}C_t + C_t e^t\mathrm{d}t + (\mathrm{d}C_t)(\mathrm{d}(e^t))$$
where of course the last term vanishes, as the function $t\mapsto e^t$ is smooth. So I have:
$$\mathrm{d}C_t = e^t\mathrm{d}C_t + V_t\mathrm{d}t$$
which then means I want the following:
$$ e^t\mathrm{d}C_t = (V_t + B_t)\mathrm{d}B_t$$ $$ \mathrm{d}C_t = C_t\mathrm{d}B_t + e^{-t}B_t\mathrm{d}B_t $$ The problem is, integrating the last equation gives $$ C_t - C_0 = \int_0^tC_s\mathrm{d}B_s + \int_0^t e^{-s}B_s\mathrm{d}B_s $$ and I can't get rid of the Ito integral involving $C$ itself.
Is this approach correct/can it be finished?