本文介绍了没有击中断点kendo MVC C#应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,我正在浏览我的视图中使用kendo的mvc c#应用程序。我的veiw代码是(片段):
Hi, everyone I am working on a mvc c# application using kendo in my views. My veiw code is (snippet):
.DataSource(dataSource => dataSource
.Ajax()
.Batch(true)
.ServerOperation(false)
.Read(read => read.Action("WrongDelivery_Read", "DirectDataInput"))
.PageSize(100)
.Model(model => model.Id(inv => inv.WrongDelivEvent_Id))
.Destroy(update => update.Action("WrongDelivery_Destroy", "DirectDataInput"))
)
但是当我按下编辑按钮并将断点放在
But when I press the "Edit" button and put breakpoint at
WrongDelivery_Destroy
方法时,断点不会被击中。任何帮助或建议将不胜感激。
我尝试过:
我试图在google和stackoverflow中搜索任何解决方案,但没有找到任何合适的。
method, the breakpoint is not hit. Any help or advise will be appreciated.
What I have tried:
I tried to search in google and stackoverflow for any solution but did not find anything appropriate.
推荐答案
这篇关于没有击中断点kendo MVC C#应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!