I have developed an application in vb.net 4.5 with VS2015 and I am using InstallShield Limited Edition to create the MSI installation file.
Some of the final users don't have internet, so I need to include the SQLLocalDB.msi
and install it silently.
I can't find a single sample for this, it should be a common scenario right?
Well, since I couldn't get an answer, I ended up including the SQLLocalDB.msi to the VS project and mark the file as "Required", so when my application starts, check if database is installed and if not, starts the msi installation in silent mode.