TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Anele Ngqandu
1.3k
429
27.8k
How to execute a function with parameters in dapper
Jun 2 2021 10:14 AM
Hi Guys
Please assist executing a dapper function below. I am using oracle Below query complains that its missing a FROM, but when from is added, it complains that the query is missing expression.
var results = connection.Query(
"select from checkpin(:Username, :Password)"
,
new
{ Username = input.Username, Password = input.Password }, commandType: CommandType.Text);
Reply
Answers (
1
)
Need to update Table columns using View in Oracle
Stored Procedure is DDL or DML Statement?