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."],[[["The latest version available is 5.0.0-beta05, while the current focus is on version 3.11.0, which is just one of many available versions."],["SpannerDataAdapter is a class used to manage data commands and a database connection for filling a DataSet and updating a Spanner database, implementing multiple interfaces like IComponent, IDisposable, ICloneable, IDbDataAdapter, and IDataAdapter."],["It provides methods for filling and updating data, such as `Fill`, `FillSchema`, and `Update`, and includes functionality for batch processing and handling schema differences."],["SpannerDataAdapter offers properties like `AutoGeneratedCommandTable` and `AutoGeneratedCommandPrimaryKeys` for automating command creation, as well as properties for managing commands like `DeleteCommand`, `InsertCommand`, `SelectCommand`, and `UpdateCommand`."],["The class also supports events like RowUpdated and RowUpdating, allowing for actions to be taken before or after commands are executed against the data source."]]],[]]