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

[Core] Support 'ExpandoObject' in 'Merge' via 'TableName'. #238

Closed
mikependon opened this issue May 16, 2019 · 1 comment
Closed

[Core] Support 'ExpandoObject' in 'Merge' via 'TableName'. #238

mikependon opened this issue May 16, 2019 · 1 comment
Assignees
Labels
deployed Feature or bug is deployed at the current release feature Defined as a big development item (feature) fixed The bug, issue, incident has been fixed. for grabs A community can grab for contribution

Comments

@mikependon
Copy link
Owner

mikependon commented May 16, 2019

Code below must be supported.

using (var connection = new SqlConnection(connectionString))
{
	var customer = new ExpandoObject() as IDictionary<string, object>();
	customer.Add("Id", 10045);
	customer.Add("LastUpdatedUtc", DateTime.UtcNow);
	connection.Merge("Customer", customer );
}
@mikependon mikependon added the feature Defined as a big development item (feature) label May 16, 2019
@mikependon mikependon self-assigned this May 16, 2019
@mikependon mikependon added the for grabs A community can grab for contribution label Nov 12, 2019
@mikependon mikependon pinned this issue Oct 6, 2020
@mikependon mikependon unpinned this issue Oct 7, 2020
mikependon added a commit that referenced this issue Oct 10, 2020
mikependon added a commit that referenced this issue Oct 11, 2020
mikependon added a commit that referenced this issue Oct 11, 2020
@mikependon mikependon added the fixed The bug, issue, incident has been fixed. label Oct 18, 2020
@mikependon mikependon added the deployed Feature or bug is deployed at the current release label Oct 28, 2020
@mikependon
Copy link
Owner Author

This is now deployed at RepoDB v1.12.5-beta1.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
deployed Feature or bug is deployed at the current release feature Defined as a big development item (feature) fixed The bug, issue, incident has been fixed. for grabs A community can grab for contribution
Projects
None yet
Development

No branches or pull requests

1 participant