I am trying to use a CDN in my bundle config to server up jQuery but also want to provide a local fallback. I found http://venkatbaggu.com/use-cdn-bundle-config-in-asp-net-mvc/ which shows how to use the CdnFallbackExpression to do this but it has you build out a variable, add the fallback data to the variable, then add the built out variable to the bundles.  What I was wondering is if there was a way to do this all within the bundle.add() command instead of having to build out a special variable for the jQuery bundle? I already have
Bundles.Add(new ScriptBundle("~/Scripts/jQuery", @"//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js").Include("~/Scripts/jquery-{version}.js")); which works fine but can not figure out how to add the CdnFallbackExpression to my existing line of code.

Go to the complete details ...