We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ee6669 commit 3d87d82Copy full SHA for 3d87d82
1 file changed
Core/Core/Extensions/Grain.cs
@@ -21,7 +21,7 @@ public static string GetDescriptor(this IAddressable grain)
21
/// <param name="name"></param>
22
public static string GetDescriptor(this IAddressable grain, string name)
23
{
24
- return $"{grain.GetPrimaryKeyString()}:{name}";
+ return string.Concat(grain.GetPrimaryKeyString(), ":", name);
25
}
26
27
0 commit comments