gpt4 book ai didi

c# - Peta Poco 和 System.Data.Entity.Spatial.DbGeography

转载 作者:行者123 更新时间:2023-11-30 16:51:00 25 4
gpt4 key购买 nike

我得到一个错误

"Object must implement IConvertible."

当我

Database db = new Database(this.ConnStr, this.Provider);
var x = db.Fetch<myObj>(sql);//returns the error

myObj 有一个

System.Data.Entity.Spatial.DbGeography

属性(property)。我该如何纠正这个问题?

最佳答案

这里是 PetaPoco 的维护者。该错误是因为 PetaPoco 不知道类型并默认尝试 Convert.ChangeType(src, dstType, null);,我认为这是错误的来源。

请提出问题 over at the repo如果您想内置支持这种类型。

一个快速解决方法是实现您自己的转换器逻辑。这方面的一个例子可以在 SQLite integration test code 中找到。 .如果您不想使用 ConventionMapper 或者您使用的是旧版本的 PetaPoco,您始终可以为特定类型注册一个客户映射器。查看mapping docs获取更多信息。

关于c# - Peta Poco 和 System.Data.Entity.Spatial.DbGeography,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34240647/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com