I have checked my database table it is having that column with same name so what is the actual exception how I can identity what is the issue check the screenshto innere 
Loading
I have checked my database table it is having that column with same name so what is the actual exception how I can identity what is the issue check the screenshto innere 
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rijwan AnsariPosted Mar 4, 2022, 10:04 AM
Mark TaborPosted Mar 4, 2022, 6:02 AM
Muhammad Imran AnsariPosted Jan 28, 2022, 5:32 AM
With try-catch block use the simply following code to get all detailed exception inside:
try
{
// Your code
}
catch (Exception ex)
{
var exception = ex.ToString();
}
Secondly, If you have column with same name then enclosed your value into appropriate quotes.
Mark TaborPosted Jan 24, 2022, 9:57 AM
Ranganath PrasadPosted Jan 19, 2022, 6:29 AM
Hi, Did you try to log/ catch the query from the code and try to execute it direcly in db using any db tool? It clearly looks like a missing colum/ incorrect query syntax
Mark TaborPosted Jan 19, 2022, 6:00 AM