当前位置: 首页>>代码示例>>C#>>正文


C# Configure.RavenPersistence方法代码示例

本文整理汇总了C#中Configure.RavenPersistence方法的典型用法代码示例。如果您正苦于以下问题:C# Configure.RavenPersistence方法的具体用法?C# Configure.RavenPersistence怎么用?C# Configure.RavenPersistence使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Configure的用法示例。


在下文中一共展示了Configure.RavenPersistence方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Initialize

        protected override void Initialize(Configure config)
        {
            connectionStringFunc = () => "Url = http://localhost:8080; DefaultDatabase=MyDB";
            database = "CustomDatabase";

            config.RavenPersistence(connectionStringFunc, database);
        }
开发者ID:89sos98,项目名称:NServiceBus,代码行数:7,代码来源:When_configuring_persistence_to_use_a_raven_server_instance_using_a_connection_string_lambda_and_database.cs

示例2: CustomRavenConfig

        CustomRavenConfig(Configure configure)
        {
            #region OldRavenDBPersistenceInitialization

            configure.RavenPersistence();
            configure.RavenSagaPersister();
            configure.RavenSubscriptionStorage();
            configure.UseRavenTimeoutPersister();
            configure.UseRavenGatewayDeduplication();
            configure.UseRavenGatewayPersister();

            #endregion

            #region Version2_5RavenDBPersistenceInitialization

            // Need to call this method
            configure.RavenDBStorage();
            // Call this method to use Raven saga storage
            configure.UseRavenDBSagaStorage();
            // Call this method to use Raven subscription storage
            configure.UseRavenDBSubscriptionStorage();
            // Call this method to use Raven timeout storage
            configure.UseRavenDBTimeoutStorage();
            // Call this method to use Raven deduplication storage for the Gateway
            configure.UseRavenDBGatewayDeduplicationStorage();
            // Call this method to use the  Raven Gateway storage method
            configure.UseRavenDBGatewayStorage();

            #endregion
        }
开发者ID:odelljl,项目名称:docs.particular.net,代码行数:30,代码来源:CustomRavenConfig.cs

示例3: Initialize

 protected override void Initialize(Configure config)
 {
     config.RavenPersistence(() => "Url = http://localhost:8080");
 }
开发者ID:89sos98,项目名称:NServiceBus,代码行数:4,代码来源:When_configuring_persistence_to_use_a_raven_server_instance_using_a_connection_string_lambda.cs

示例4: Initialize

 protected override void Initialize(Configure config)
 {
     config.RavenPersistence("RavenWithDefaultDBSet");
 }
开发者ID:afyles,项目名称:NServiceBus,代码行数:4,代码来源:When_configuring_persistence_to_use_a_raven_server_instance_using_a_connection_string_and_database.cs

示例5: Initialize

 protected virtual void Initialize(Configure config)
 {
     config.RavenPersistence();
 }
开发者ID:remogloor,项目名称:NServiceBus,代码行数:4,代码来源:WithRavenDbServer.cs


注:本文中的Configure.RavenPersistence方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。