3

I tried with following code but its not working .

  public void deleteRow(int index)
            {
               conn.QueryAsync<Bill>("Delete From Bill Where Id ='?'", index);

            }

1 Answer 1

2

Think the only problem is that you use Id ='?' when it should be Id = ?. When you use ? in the query you don't want to have it between''

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.