You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I store objects in DynamoDb table. However, the table's column names don't match with the object's property names. The object's property name is quite long so I use shorter column name to minimize the number of transferred bytes.
When I do
I store objects in DynamoDb table. However, the table's column names don't match with the object's property names. The object's property name is quite long so I use shorter column name to minimize the number of transferred bytes.
When I do
var inceptionMovie = moviesTable
.Where(m => m.Genre == "Thriller" && m.Title == "Inception")
.Single();
I don't see how Linq2DynamoDb handles the name mismatch. I am fairly new to Linq2DynamoDb. If there exists a way, please let me know. Thanks.
The text was updated successfully, but these errors were encountered: