nuodb / nuodb-dotnet

.NET Driver for NuoDB
Other
21 stars 13 forks source link

The mapping data types are incorrect #18

Closed fishcodelib closed 9 years ago

fishcodelib commented 9 years ago

https://github.com/nuodb/nuodb-dotnet/search?utf8=%E2%9C%93&q=case+DbType.Date%3A+return+%22System.Date%22%3B Incorrect: case DbType.Date: return "System.Date"; case DbType.Time: return "System.Time"; case DbType.Binary: return "System.Binary";

Correct: case DbType.Date: return "System.DateTime"; case DbType.Time: return "System.DateTime"; case DbType.Binary: return "System.Object";

albymassari commented 9 years ago

Thanks for reporting this. The bogus types have been removed