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 Spanner databases, enabling operations like filling datasets and updating the database."],["Version 5.0.0-beta05 is the latest version, and there are many other versions available, including multiple beta versions, along with versions ranging from 3.5.0 to 4.6.0."],["It allows for automatically generating commands (Select, Insert, Update, Delete) based on a specified table, or for customizing commands as needed."],["The `SpannerDataAdapter` utilizes `SpannerCommand` objects for database operations and `SpannerConnection` for establishing a connection to the database."],["It implements various interfaces like `IComponent`, `IDisposable`, `ICloneable`, `IDbDataAdapter`, and `IDataAdapter`, inheriting functionality from related classes such as `DbDataAdapter` and `Component`."]]],[]]