设置 LINQ to sql datacontext 的默认数据类型

发布于 2024-12-07 04:31:28 字数 114 浏览 0 评论 0原文

有没有办法更改 LINQ 到 sql 数据上下文的默认映射?我想在每次创建新实体时将 INT 更改为映射到 long 而不是 int

Is there any way of changing the default mapping for LINQ to sql datacontexts? I want to change INT to map to long rather than int every time a new entity is created.

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

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

发布评论

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

评论(1

盛夏已如深秋| 2024-12-14 04:31:28

我能想到的两种方法:

  1. 创建一个 DBML 文件。
  2. 查找并将 System.Int32 替换为 System.Int64(很容易创建一个小型命令行应用程序,因此您只需在刷新 DBML 时双击它即可)。
  3. 使用 DBML 文件。

或者:

无论如何,只需手动编写类代码即可。实际上,我发现它比 DBML 更容易手动编码 - 当我进行更改时,我可能会进行一系列相关的更改,因此它完全符合我对更改含义的思考方式。

Two ways I can think of:

  1. Create a DBML file.
  2. Find-replace System.Int32 to System.Int64 (easy to create a little command-line app so you just need to double-click it whenever you refresh the DBML).
  3. Use the DBML file.

Or:

Just hand-code the classes anyway. I actually find it handier to hand-code than DBML - when I make a change I'm likely going to be making a bunch of related changes anyway, so it fits right into how I'm thinking of the change's implications anyway.

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