我不得不做一些崇敬的工程。
无论如何,我基于Dynamic CRM 2011
插件为decompiled
开发了一个插件。请参阅此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?)
我应该在项目中添加什么参考?
答案 0 :(得分:0)
从其用法,我们可以看到QuoteProductRepository
是一个类。由于它不是Microsoft \ Dynamics CRM类,因此它必须是在反编译的原始.dll上使用的第三方代码段。
我在这里看到两个选项: