种子身份栏

发布于 2024-08-10 08:15:40 字数 34 浏览 8 评论 0原文

是否可以使用 SubSonic 设置表的标识列的种子?

Is is possible to set the seed for the identity column of a table using SubSonic?

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

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

发布评论

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

评论(1

毁虫ゝ 2024-08-17 08:15:40

AFAIK,您需要使用 SQL 才能在 SubSonic 中执行此操作。每个 DBMS 都有不同的语法来更改种子,但如果您知道您正在使用哪个 DBMS,那么注入一点 SQL 并不难。例如,对于 C# 的 SQL Server,代码将如下所示:

new InlineQuery("DBCC CHECKIDENT (\"MyTable.ColumnName\",RESEED,300)").Execute();

AFAIK, you need to shell out to SQL to be able to do this in SubSonic. Every DBMS has a different syntax for changing the seed, but if you know which DBMS you're using then injecting a little SQL isn't hard. For example, for SQL Server from C#, the code would be something like this:

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