I have an IBM DB2 database, and I need to get values from one column that is primary key and it is TIMESTAMP. That primary key is in this format: dd.MM.yyyy hh:mm:ss.ffffff
I need to get it with full accuracy. But, when I use Entity framework for getting the data last 3 numbers of are lost.
I get this format: dd.MM.yyyy hh:mm:ss.fff. Is there an easy way to solve this problem and get precise data, like telling Entity framework in some way that I am expecting datatime in this specific format?