以编程方式将 .NET 类型映射到 SQL Server 类型?

发布于 2024-10-21 15:17:32 字数 104 浏览 0 评论 0原文

有没有办法以编程方式将 .NET 类型(例如 typeof(int))映射到其相应的 SqlDbType(例如 SqlDbType.Int)?

Is there any way to programmatically map a .NET type (such as typeof(int)) into its corresponding SqlDbType (such as SqlDbType.Int)?

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

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

发布评论

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

评论(3

天暗了我发光 2024-10-28 15:17:32

您是否研究过实体框架?这将为您完成所有映射。

Have you looked into The Entity Framework? This will do all of the mappings for you.

与风相奔跑 2024-10-28 15:17:32

据我所知,内部使用的任何方法都没有公开。您最好选择您自己的扩展方法/使用 switch 语句或哈希表的映射存储库。

Not that I know of, tehre is no exposure of whatever method is used internally. Your best bet it your own extension method / mapping repository that uses a switch statement or a hashtable.

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