public sealed class CommandPartition : IEquatable<CommandPartition>
Reference documentation and code samples for the Google.Cloud.Spanner.Data class 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-17 UTC."],[[["This document provides reference information for the `CommandPartition` class within the `Google.Cloud.Spanner.Data` namespace, primarily used for partitioning data in Spanner for parallel operations."],["The `CommandPartition` class, part of Google Cloud Spanner Data, represents a division of data that a `SpannerCommand` can execute upon, enabling parallel processing across different tasks."],["The latest available version for reference is 5.0.0-beta05, and the page lists previous versions, including 4.6.0 down to 3.5.0, which includes direct links to each version."],["Key functionalities of `CommandPartition` include obtaining a partition ID (`PartitionId`) and serializing/deserializing partitions to and from Base64 strings using the `ToBase64String()` and `FromBase64String(string)` methods, respectively."],["`CommandPartition` inherits from `object` and implements the `IEquatable` interface."]]],[]]