是否有一种将 DbType 作为参数传递的通用方法
我需要执行此参数化查询或等效查询:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将必须动态地执行此操作,并且查看特定于提供者的翻译可能是有意义的(因此提供者可以提供自己的映射)。
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).