Search Results for

    Show / Hide Table of Contents

    Amazon DynamoDB Grain Persistence

    安装

    安装Microsoft.Orleans.Persistence.DynamoDBNuGet的软件包。

    组态

    使用以下命令配置Dynamo DB Grain Persistence提供程序ISiloBuilder.AddDynamoDBGrainStorage扩展方法。

    siloBuilder.AddDynamoDBGrainStorage(
        name: "profileStore",
        configureOptions: options =>
        {
            options.UseJson = true;
            options.AccessKey = /* Dynamo DB access key */;
            options.SecretKey = /* Dynamo DB secret key */;
            options.Service = /* Dynamo DB service name */;
        });
    
    • Improve this Doc
    In This Article
    Back to top Generated by DocFX