4

我正在寻找在 Raven DB 中生成测试数据的首选且可维护的方式。目前,我们的团队确实有办法通过 .NET 代码来实现。提供了示例。

但是,我正在寻找不同的选择。请分享。

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真的很有帮助。感谢您指出正确的地方。

4

1 回答 1

7

尝试检查RavenOverflow。在那里,我有一个包含假数据(硬编码和随机生成)的FakeData项目。然后可以在我的测试项目或主网站中使用它:)

这是一些示例代码...

if (isDataToBeSeeded)
{
    HelperUtilities.CreateSeedData(documentStore);
}

……

public static void CreateSeedData(IDocumentStore documentStore)
{
    Condition.Requires(documentStore).IsNotNull();

    using (IDocumentSession documentSession = documentStore.OpenSession())
    {
        // First, check to make sure we don't have any data.
        var user = documentSession.Load<User>(1);
        if (user != null)
        {
            // ooOooo! we have a user, so it's assumed we actually have some seeded data.
            return;
        }

        // We have no users, so it's assumed we therefore have no data at all.
        // So lets fake some up :)

        // Users.
        ICollection<User> users = FakeUsers.CreateFakeUsers(50);
        StoreFakeEntities(users, documentSession);

        // Questions.
        ICollection<Question> questions = FakeQuestions.CreateFakeQuestions(users.Select(x => x.Id).ToList());
        StoreFakeEntities(questions, documentSession);

        documentSession.SaveChanges();

        // Make sure all our indexes are not stale.
        documentStore.WaitForStaleIndexesToComplete();
    }
}

……

public static ICollection<Question> CreateFakeQuestions(IList<string> userIds, int numberOfFakeQuestions)
{
.... u get the idea .....
}

希望这可以帮助。

于 2012-06-19T03:56:22.180 回答