我将文件放到生产服务器上。在我的开发机器上,我目前使用abp文件生成我的代码。
为了将网站移动到我的生产服务器上,我认为我会自动生成文件,因为我在abp文件中收到错误,因为我没有在FullTrust下运行它。
我运行以下命令行来生成文件:
sonic.exe generate /server "serverName" /db "dbName" /generatedNamespace "namespace" /out GeneratedFiles
所有文件都可以生成,但是当我尝试运行时,我收到以下错误:
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
Line 228: public static Select Select()
Line 229: {
Line 230: return Repository.Select();
Line 231: }
Line 232:
Source File: ~\AllStructs.cs Line: 230 (*changed to not show full path)
任何想法导致了什么?我在SubSonics视线上找不到任何东西,这让我能够正确了解正在发生的事情。
答案 0 :(得分:0)
您的项目文件中是否有app.config或web.config,并且连接字符串引用了您的实例?