【发布时间】:2017-06-06 06:34:06
【问题描述】:
我使用这个系列通过 ASP.NET 处理 CQRS/ES:
https://www.exceptionnotfound.net/real-world-cqrs-es-with-asp-net-and-redis-part-2-the-write-model/
我的问题出在它使用 ISession 的代码中,我不知道它有什么程序集/包。根据文档,我需要安装 CQRSLite,但是当我尝试安装它时出现错误。
private readonly ISession _session;
这是我得到的错误:
Could not install package 'CqrsLite 0.12.9'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.5', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.
我正在使用 Visual Studio 2015 和 .net 4.5。
【问题讨论】:
标签: c# asp.net .net cqrs event-sourcing