为什么我的 linq to sql 生成的类没有 OnCreated()
我一直在互联网上阅读有关部分方法的信息,我可以使用该方法称为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只有表视图才会有 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