Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve insert statement generation with insert column list. #59

Open
kccarter76 opened this issue Jul 30, 2020 · 0 comments
Open

improve insert statement generation with insert column list. #59

kccarter76 opened this issue Jul 30, 2020 · 0 comments
Labels
enhancement New feature or request good first issue Good for newcomers
Projects

Comments

@kccarter76
Copy link
Collaborator

kccarter76 commented Jul 30, 2020

Is your feature request related to a problem? Please describe.
Currently, inserting record is dependent on matching the column order in the schema. If the code model differs from the schema model in column ordering. there would be a problem.

Describe the solution you'd like
the insert into statement would use to the INSERT INTO [SCHEMA].[TABLE] ([column1], [column3], [column2]) instead of just INSERT INTO [SCHEMA].[TABLE] .

note:

prepare the insert and update queries with the ability to track index position in table type and in memory tables

@kccarter76 kccarter76 added enhancement New feature or request good first issue Good for newcomers labels Jul 30, 2020
@kccarter76 kccarter76 added this to To do in SubSonic via automation Jul 30, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
SubSonic
  
To do
Development

No branches or pull requests

1 participant