0
目前,無論我需要連接到RavenDB,我的ASP.NET MVC站點中都有類似這樣的東西。如何爲全局RavenDB設置FailoverBehavior
using (var ds = new DocumentStore { Url = urlBase }.Initialize())
{
ds.Conventions.FailoverBehavior = FailoverBehavior.ReadFromAllServers;
}
有沒有我可以在web.config中設置的FailoverBehavior全球範圍內,像或許,這樣我就不必每次我創建DocumentStore的新實例的時間來做到這一點的方法嗎?