public string AutoGeneratedCommandTable { get; set; }
The table to use for automatically built commands.
If set, the SpannerDataAdapter will automatically create commands for
SelectCommand, InsertCommand, UpdateCommand
and DeleteCommand selecting all columns for that Table.
You can choose to customize some or all of the commands and use the autogenerated commands
for ones you do not modify. For example, you can set SelectCommand to be
a custom SQL Query, and leave the other commands to be based on AutoGeneratedCommandTable
[[["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 documentation page covers the `SpannerDataAdapter` class, which is part of the `Google.Cloud.Spanner.Data` library, and is designed for interacting with Spanner databases."],["The latest beta version available is `5.0.0-beta05`, with a history of versions ranging from 5.0.0-beta04 back to 3.5.0 available for reference."],["`SpannerDataAdapter` is used to manage data commands and a database connection to fill a DataSet and update a Spanner database, implementing several interfaces including `IComponent`, `IDisposable`, and `IDataAdapter`."],["The class provides methods for filling data (`Fill`) and updating data (`Update`), managing schema (`FillSchema`), along with events for row updating and updated events, and it can automatically generate commands for common operations."],["The `SpannerDataAdapter` can be configured with properties such as `AutoGeneratedCommandTable`, `DeleteCommand`, `InsertCommand`, `SelectCommand`, `UpdateCommand`, and `SpannerConnection` to customize how it interacts with the Spanner database."]]],[]]