Dapper 将 MySql BIT(1) 数据类型映射为 ulong 而不是 boolean

发布于 2024-11-24 07:21:14 字数 185 浏览 4 评论 0 原文

请问有人在使用 Dapper 和 MySQL 时遇到过上述情况吗?在 MySQL (5.1) 中的所有数据类型为 BIT(1) 或 BIT 的表中,Dapper 仅返回 ulong (UInt64) 等字段。我正在使用 MySql.Data.MySqlClient 并且我对 EF 没有这样的问题,这是我试图从中转换的。

感谢您的任何帮助。

Please has anyone come across the above situation with Dapper and MySQL. In all my tables in MySQL (5.1), where the data type is BIT(1) or BIT, Dapper simply return such field as ulong (UInt64). I am using MySql.Data.MySqlClient and I have no such issue with EF which is what I am trying to convert from.

Thanks for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

强辩 2024-12-01 07:21:14

在 MySQL 中,Boolean 类型通过 MySQL 映射到 Tinyint(1)。也许您必须将其转换为 Boolean (0=false/1=true),Convert.toBoolean(UInt64) 可能会帮助您(请参阅http://msdn.microsoft.com/en-us/library/33f2zy48.aspx)。

@Christian Droulers:SQLite 的行为类似。

In MySQL, the type Boolean is mapped to Tinyint(1) with MySQL. Perhaps you will have to cast it to Boolean (0=false/1=true), Convert.toBoolean(UInt64) may help you (see http://msdn.microsoft.com/en-us/library/33f2zy48.aspx).

@Christian Droulers: The behaviour of SQLite is similar.

彻夜缠绵 2024-12-01 07:21:14

为什么不在 sql 查询中进行转换?

cast(myField using TINYINT(1)) as myField 

不确定这里的类型,但这就是当我的数据库类型与我的对象不匹配时我所做的方式。

Why don't you do the casting in your sql query ?

cast(myField using TINYINT(1)) as myField 

Not sure abot the type here, but that's the way I do when my db type doesn't match my object's.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文