为什么我的 linq to sql 生成的类没有 OnCreated()

发布于 2024-08-25 00:47:37 字数 352 浏览 9 评论 0原文

我一直在互联网上阅读有关部分方法的信息,我可以使用该方法称为 OnCreated() 在创建 Linq - SQL 类时针对该类运行一些逻辑。然而,没有那个名称的部分类可供我使用。我确信我在这里遗漏了一些小东西。

这是我试图在部分类中调用的内容,

partial void OnCreated()

我收到编译时错误,

No defining declaration found for implementing declaration of partial method...

所以我猜它不在那里,我的问题是为什么?

谢谢

I've been reading over the internet about a partial method that I can use called OnCreated() to run some logic against my Linq - SQL class while it is being created. How ever there is no partial class by that name for me to use. I'm sure I'm missing something small here.

Here is what I'm trying to call in the partial class

partial void OnCreated()

I'm getting the compile time error of

No defining declaration found for implementing declaration of partial method...

So I guess its not there and my question is why?

Thanks

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

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

发布评论

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

评论(1

会傲 2024-09-01 00:47:37

只有表视图才会有 Partial OnCreated

它在这里工作正常

存储过程是数据上下文的方法,它们不生成类

Only tables a view will have the Partial OnCreated

it works fine over here

the stored procedures are methods of the datacontext, they are not generating classes

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