Browse Source

Update README.md

pull/161/head
gdlcf88 4 years ago
parent
commit
c1f20ea37d
  1. 9
      docs/plugins/inventories/orleans-grains/README.md

9
docs/plugins/inventories/orleans-grains/README.md

@ -26,14 +26,7 @@ EShop product-inventory implementation of [Orleans Grains](https://docs.microsof
.UseOrleans(c =>
{
c.UseLocalhostClustering() // for test only
.AddMemoryGrainStorage(InventoryGrain.StorageProviderName) // for test only
.Configure<ClusterOptions>(options =>
{
options.ClusterId = "my-first-cluster";
options.ServiceId = "MyEShopApp";
})
.ConfigureApplicationParts(
parts => parts.AddApplicationPart(typeof(InventoryGrain).Assembly).WithReferences());
c.AddMemoryGrainStorage(InventoryGrain.StorageProviderName); // for test only
});
```

Loading…
Cancel
Save