同じデータベースから2つのテーブルがあります。ちょうど顧客と注文表。 私はそこから顧客を得ることができますが、注文をしようとすると例外があります。WCFデータサービスで基底の接続が閉じられました
An unhandled exception of type 'System.Data.Services.Client.DataServiceTransportException' occurred in Microsoft.Data.Services.Client.dll Additional information: The underlying connection was closed: An unexpected error occurred on a receive.;"
マイのhttpRuntimeです:
httpRuntime targetFramework="4.5.2" executionTimeout="90" maxRequestLength="1048576" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100" requestLengthDiskThreshold="2147483647"/>
、このエラー:二つの
Error: Function evaluation disabled because a previous function evaluation timed out. You must continue execution to reenable function evaluation
これらのテーブルのデータ量に問題がありました。 2番目のテーブルにはフィールドが多すぎるので、LinQを使って部分的に取ります。 –