The exception you got says pretty much it all: in your entity object you have a property of type Int64
which is defined as DateTime
in the database, and there is no way to implicitly convertfrom one to another. Do you really intend to represent that database column as an integer? Maybe it is just a mistake in the definition of the entity class.
Konamiman
2009-10-27 12:22:14