MvcMailer:上下文已经在跟踪具有相同资源 Uri 的不同实体

发布于 2024-12-07 16:22:27 字数 608 浏览 3 评论 0 原文

我似乎无法弄清楚为什么我无法安装 nuget pakcage

我尝试在 Visual Studio 2010 包管理器中运行它,

Install-Package MvcMailer

但我收到下面显示的错误

PM> install-package MvcMailer
Install-Package : The context is already tracking a different entity with the same        resource Uri.
At line:1 char:16
+ install-package <<<<  MvcMailer
+ CategoryInfo          : NotSpecified: (:) [Install-Package], InvalidOperationException
+ FullyQualifiedErrorId :    NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand

PM> 

任何想法如何解决此问题? tnx

i cant seem to figured out why i cant install nuget pakcage

ive tried running this in visual studio 2010 package manager

Install-Package MvcMailer

but i get an error shown below

PM> install-package MvcMailer
Install-Package : The context is already tracking a different entity with the same        resource Uri.
At line:1 char:16
+ install-package <<<<  MvcMailer
+ CategoryInfo          : NotSpecified: (:) [Install-Package], InvalidOperationException
+ FullyQualifiedErrorId :    NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand

PM> 

any ideas how to resolve this issue? tnx

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

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

发布评论

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

评论(1

℉服软 2024-12-14 16:22:27

来自 MSDN

如果反序列化类型与正在跟踪的实体的数据类型并不真正匹配,则会发生此错误。解决此问题的方法是不使用跟踪选项。

更多信息可以在这里找到

http://msdn.microsoft。 com/en-us/library/system.data.services.client.mergeoption.aspx

另外,建议为每个逻辑操作(例如插入和查询上下文)使用新的、不同的数据服务上下文。

From MSDN:

this error will occur if deserialized type dont really match the data Type of the entity being tracked. a fix for this is via using no tracking option.

more information can be found here

http://msdn.microsoft.com/en-us/library/system.data.services.client.mergeoption.aspx

also, it is advisable to use a new, different Data Service Context for every logical operation like insert and queries context.

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