The given key was not present in the dictionary.

View: New views
3 Messages — Rating Filter:   Alert me  

The given key was not present in the dictionary.

by sanjeev40084 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

System.Collections.Generic.KeyNotFoundException was caught
  Message="The given key was not present in the dictionary."
  Source="mscorlib"
  StackTrace:
       at System.ThrowHelper.ThrowKeyNotFoundException()
       at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
       at test.DataAccess.DataSources.get_test) in C:\test\DataAccess\DataSources.cs:line 47
       at test.GetEmployeeID() in C:\test\DataAccess\Employee cs:line 22
  InnerException:

I am getting this error, while accessing a method. I think it is because one of the field is returning null from the sql query. However i did try to fix it checking the value of field (saying..if it is null then get ' ' else get the value).

Any clue how i can fix it?

Re: The given key was not present in the dictionary.

by Michael McCurrey-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Can you show us your map file...

On Tue, Jul 14, 2009 at 12:10 PM, sanjeev40084 <sanjeev40084@...> wrote:

System.Collections.Generic.KeyNotFoundException was caught
 Message="The given key was not present in the dictionary."
 Source="mscorlib"
 StackTrace:
      at System.ThrowHelper.ThrowKeyNotFoundException()
      at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
      at test.DataAccess.DataSources.get_test) in
C:\test\DataAccess\DataSources.cs:line 47
      at test.GetEmployeeID() in C:\test\DataAccess\Employee cs:line 22
 InnerException:

I am getting this error, while accessing a method. I think it is because one
of the field is returning null from the sql query. However i did try to fix
it checking the value of field (saying..if it is null then get ' ' else get
the value).

Any clue how i can fix it?

--
View this message in context: http://www.nabble.com/The-given-key-was-not-present-in-the-dictionary.-tp24485925p24485925.html
Sent from the iBATIS - User - Cs mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-cs-unsubscribe@...
For additional commands, e-mail: user-cs-help@...




--
Michael J. McCurrey
Read with me at http://www.mccurrey.com
http://chaoticmindramblings.blogspot.com/

Re: The given key was not present in the dictionary.

by sanjeev40084 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Never mind..i got it fixed.