Parameter count Mismatch
I am facing this inner exception of Parameter count Mismatch. and main is "Unable to convert "ManagementAppDbHandler.Notes" from [L:1]:[C:-1] to ManagementAppDbHandler.Notes".
Can you attach a demo Excel file and the class definition you're trying to map to?
Hi Michael,
I am having these Column names in excel and I am transferring the same after modelling to MongoDB.
but the case is that I don't have Version inside my excel file and I created a version Interface like this
and implemented the interface in model class like this
So I want to do the same for Notes I have to store a Notes Object which will be having list of notes in it and by following the same process I had created Notes class like this with Notes properties
and Interface same as version like this
and I am trying to implement the same in my model class but it is getting accessed while iterating through properties.

I'm not sure I understand this yet. Perhaps you just need to decorate Version etc with [Ignore]?
Resolved Hi Michael, You're amazing I didn't knew about that [Ignore] part. Thanks so much.