类型存在于两个库中
我正在尝试将 Linq to Lucene 合并到我的 Asp.net-mvc 项目中。
与大多数 Web 项目一样,我使用 PagedList 输入我放入我的个人助手库并在各处使用它。
但 Linq to Lucene 也是如此...... 由于我的库和 L2L 库都希望将 PagedList 类型添加到 System.Collections.Generic 命名空间,因此我收到一条冲突消息。
有没有办法解决这个冲突,而不必重写我的项目或 L2L 项目?
I'm trying to incorporate Linq to Lucene in my Asp.net-mvc project.
As with most web projects, I use the PagedList type I put in my personal helper library and use it all over the place.
But so did Linq to Lucene...
Since both my library and the L2L library want to add the PagedList type to System.Collections.Generic namespace, I get a conflict message.
Is there a way to resolve this conflict without either having to rewrite my projects or the L2L project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将类型添加到 .NET BCL 命名空间通常是一个坏主意,因为它不会给您带来任何好处,而且从长远来看会带来重大麻烦。 因此,建议可能是将您的帮助器类移出 System.Collections.Generic 命名空间。
It's generally a bad idea to add types to .NET BCL namespaces since it gives you no benefits whatsoever and causes major troubles in the long run. So the advice might be to move your helper class out of
System.Collections.Generic
namespace.