public sealed class CommandPartition : IEquatable<CommandPartition>
Represents a partition of data upon which a SpannerCommand will execute.
Partitions are useful for parallelizing large operations across several tasks or processes.
After partitioning a query, the partitions can be serialized using this method, then deserialized
with FromBase64String(String) on multiple machines, allowing parallel processing.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-09 UTC."],[[["The `CommandPartition` class represents a data partition for a `SpannerCommand`, enabling parallel execution of large operations across multiple tasks or processes."],["The latest beta version available is `5.0.0-beta05`, and there are multiple versions accessible, ranging from `5.0.0-beta04` down to `3.5.0`."],["`CommandPartition` objects can be serialized into base64 text using the `ToBase64String()` method, and deserialized back into a `CommandPartition` with `FromBase64String(String)`."],["Each `CommandPartition` instance has a `PartitionId` property, a string value that specifies which data the associated `SpannerCommand` will be executed on."],["The `GetHashCode()` method is overridden to provide a hash code for the `CommandPartition`, and it also implements `IEquatable` to define equality."]]],[]]