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."],[[["This document outlines the `CommandPartition` class, which is designed to represent a data partition for the `SpannerCommand` and is especially useful for parallel processing of large operations."],["The latest version listed for reference documentation is `5.0.0-beta05`, although multiple other versions exist, including `4.6.0` down to `3.5.0`, all for the `CommandPartition` class."],["The `CommandPartition` class offers a `PartitionId` property that identifies the data subset the associated `SpannerCommand` should operate on."],["The `CommandPartition` can be serialized into a base64 string with the `ToBase64String()` method and re-created from a base64 string with the `FromBase64String()` method."],["The `CommandPartition` class inherits from `Object`, implements `IEquatable`, and overrides `GetHashCode()`."]]],[]]