我正在尝试使用PetaPoco作为我的ORM。

http://www.toptensoftware.com/petapoco/所述,我已经从nuget中尝试了Install-Package PetaPoco。但这以An error occurred while loading packages from'https://api.nuget.org/v3/index.json': The operation has timed out.结尾

然后我从https://github.com/toptensoftware/PetaPoco/blob/master/PetaPoco/PetaPoco.cs下载并添加了PetaPoco.cs

但是我仍然收到73个错误。

The type or namespace name 'Internal' does not exist in the namespace 'PetaPoco'
The name 'DatabaseType' does not exist in the current context
The type or namespace name 'ITransaction' could not be found
.....
.....


有什么帮助吗?

最佳答案

再次尝试nuget软件包。您下载的文件不是单个文件版本。单个文件版本在编译时构建,并打包为nuget包。别忘了PetaPoco有三种版本。请参阅wiki

关于c# - Erron在PetaPoco整合,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34478311/

10-10 06:00