I think my understanding on SimpleMembershipProvider is almost 60% and the rest is getting to know how it internally work.
You can quickly found some issue when using [InitializeSimpleMembership] filter only in AccountController (the default template). I think anywhere you use Memberhsip API or WebMatrix.WebSecurity, you need to make sure this filter should be called first.
Later, If you use User.IsInRole in my _Layout.cshtml. You need to apply the filter to all controllers, then you start registering it in globally.
However I just realize there is LazyInitializer.EnsureInitialized which make the initialization performed only once per app start.
So why the SimpleMembershipInitializer (in the filter) is not directly in Application_Start?
Is there any reason to use the filter?