4
我正在尋找Raven DB中測試數據生成的首選和可維護方式。目前,我們的團隊確實有辦法通過.NET代碼來完成它。提供示例。在Raven DB中生成測試數據
但是,我正在尋找不同的選項。請分享。
public void Execute()
{
using (var documentStore = new DocumentStore { ConnectionStringName = "RavenDb" })
{
documentStore.Conventions.DefaultQueryingConsistency = ConsistencyOptions.QueryYourWrites;
// Override the default key prefix generation strategy of Pascal case to lower case.
documentStore.Conventions.FindTypeTagName = type => DocumentConvention.DefaultTypeTagName(type).ToLower();
documentStore.Initialize();
InitializeData(documentStore);
}
}
編輯:Raven-overflow是真的很有幫助。感謝您指出正確的地方。