Microsoft 数据访问应用程序块中的起订量

发布于 2024-09-28 08:18:01 字数 202 浏览 1 评论 0原文

我刚刚将最新版本的源代码下载到 Microsoft Enterprise Library。当我尝试在 Visual Studio 2010 中构建解决方案时,出现以下错误:

类型或命名空间名称“Moq”可以 找不到(您是否缺少使用 指令还是程序集引用?)

什么是起订量以及在哪里可以找到程序集

I just downloaded the latest release of the source code to the Microsoft Enterprise Library. When I tried to build the solution in Visual Studio 2010, I get the following error:

The type or namespace name 'Moq' could
not be found (are you missing a using
directive or an assembly reference?)

What is Moq and where can I find the assemblies

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

囍笑 2024-10-05 08:18:01

Moq(发音为“Mock-you”或只是
“Mock”)是唯一的模拟库
.NET 从头开始​​开发到
充分利用.NET 3.5(即
Linq 表达式树)和 C# 3.0
特征(即 lambda 表达式)
使其成为最具生产力的,
类型安全且重构友好
可用模拟库。还有它
支持模拟接口以及
类。它的API非常简单
并且简单明了,并且不
需要任何先验知识或
具有模拟概念的经验。

http://code.google.com/p/moq/

程序集是此处。 您可能需要 3.1 二进制文件。

Moq (pronounced "Mock-you" or just
"Mock") is the only mocking library
for .NET developed from scratch to
take full advantage of .NET 3.5 (i.e.
Linq expression trees) and C# 3.0
features (i.e. lambda expressions)
that make it the most productive,
type-safe and refactoring-friendly
mocking library available. And it
supports mocking interfaces as well as
classes. Its API is extremely simple
and straightforward, and doesn't
require any prior knowledge or
experience with mocking concepts.

http://code.google.com/p/moq/

The assemblies are here. You probably want the 3.1 binaries.

柠檬色的秋千 2024-10-05 08:18:01

除了从 http://code.google.com/p/moq/ 下载 DLL 文件之外,您还可以需要将它们添加到 VS 中应用程序的 bin 引用中。在 VS 中,右键单击“引用”并选择“添加引用”。

Beside downloading DLL files from http://code.google.com/p/moq/ you need to add them in the bin reference of your application in VS.In VS ,right click on References and choose Add Reference.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文