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 `SpannerDataAdapter` class is used to interact with a Spanner database, facilitating data retrieval and updates."],["It provides the ability to automatically generate commands for common database operations like select, insert, update, and delete based on a specified table."],["The latest version of the documentation is for `5.0.0-beta05`, with a history of documentation going back to version `3.5.0` that is listed, with `3.7.0` being the current version."],["It allows for the customization of SQL queries through properties like `SelectCommand`, `InsertCommand`, `UpdateCommand`, and `DeleteCommand`, giving fine-grained control over database interactions."],["The class inherits from `DbDataAdapter` and implements interfaces like `IComponent`, `IDisposable`, `ICloneable`, `IDbDataAdapter`, and `IDataAdapter`, meaning that it is designed to work with various data manipulation and management features within the .NET framework."]]],[]]