Skip to content

Instantly share code, notes, and snippets.

@ronnieoverby
Created April 12, 2012 00:59
Show Gist options
  • Save ronnieoverby/2363908 to your computer and use it in GitHub Desktop.
Save ronnieoverby/2363908 to your computer and use it in GitHub Desktop.
using Raven.Client.Document;
namespace RavenLinqpadDriver
{
public interface IConfigureDocumentStore
{
/// <summary>
/// Completes configuration the DocumentStore.
/// </summary>
/// <param name="preConfiguredDocStore">A DocumentStore object that has been configured with the values from the connection properties dialog window.</param>
/// <returns>A completely configured DocumentStore instance.</returns>
DocumentStore ConfigureDocumentStore(DocumentStore preConfiguredDocStore);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment