We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, the API assumes that if you call Select you want to project to a different type. You can simply pass the same type to work around it:
db.From<Product>("products") .Select<Product>("id, name") /* map only these properties */
However, if you are working with an untyped set, you cannot call Select and stay untyped (using DynamicMapper), you have to pass a result type.
The text was updated successfully, but these errors were encountered:
added #23: Support Select in SqlSet without specifying a result type
5b6314e
maxtoroq
No branches or pull requests
Currently, the API assumes that if you call Select you want to project to a different type. You can simply pass the same type to work around it:
However, if you are working with an untyped set, you cannot call Select and stay untyped (using DynamicMapper), you have to pass a result type.
The text was updated successfully, but these errors were encountered: