【发布时间】:2019-03-11 14:53:01
【问题描述】:
我不得不做一些逆向工程。
无论如何,我基于decompiled 插件为Dynamics CRM 2011 开发了一个插件。请参阅此link。
我创建了一个新的类库,
我解决了大部分错误。
但是存在一些错误,其中一个是重复最多的!
该实体存储库调用的所有位置,例如QuoteProduct Entity:
QuoteProductRepository quoteProductRepository = new QuoteProductRepository(context);
编译器说:
Severity Code Description Project File Line Suppression State
Error CS0246 The type or namespace name 'QuoteReceiptStepRepository' could not be found (are you missing a using directive or an assembly reference?)
我应该向项目添加什么参考?
【问题讨论】:
标签: .net visual-studio dynamics-crm dynamics-crm-2011 crm