是否有一种将 DbType 作为参数传递的通用方法

发布于 2024-10-22 16:16:27 字数 310 浏览 1 评论 0原文

我需要执行此参数化查询或等效查询:

ALTER TABLE tableName ADD COLUMN ? ?

以参数作为新列的名称和数据类型。 例如,如果我传入“Name”DbType.Double,那么它将解析为:

ALTER TABLE tablename ADD COLUMN Name FLOAT

我不能只在 DbType 和字段名称之间创建映射类型,因为代码在 IDbConnection 接口上工作,而不是特定的实现。有没有通用的方法来做到这一点?现在我为每个实现都有一个单独的映射,这显然远非理想。

I need to execute this parameterized query, or an equivalent:

ALTER TABLE tableName ADD COLUMN ? ?

with the parameters as the name of the new column, and the data type.
For example, if I pass in 'Name' DbType.Double, then it would resolve to:

ALTER TABLE tablename ADD COLUMN Name FLOAT

I can't just create a mapping between DbType and the name of the field type, as the code's working on the IDbConnection interface, not a specific implementation. Is there a generic way of doing this? Right now I've got a separate mapping for each implementation, which is obviously far from ideal.

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

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

发布评论

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

评论(1

假面具 2024-10-29 16:16:27

您将必须动态地执行此操作,并且查看特定于提供者的翻译可能是有意义的(因此提供者可以提供自己的映射)。

You're going to have to do this dynamically, and it may make sense to look at a provider-specific translation (so providers can supply their own mappings).

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