2016-03-21 7 views
3

Npgsql EF6プロバイダ(Npgsql v3.0.5.0)を使用しています。私は既存のデータベースからモデルを生成しました。私はデータベースにアクセスしてレコードを読むことができますが、既存のレコードを更新することはできません。NpgsqlのEntityFramework6が無効な更新文を作成します

これは私のコードの簡易版である:

int jobId = 123; // some unique id 
Entities entities = new Entities(); 
Job job = entities.Jobs.First(j => j.Id = jobId); 
job.Status = 4; 
entities.SaveChanges(); // this line throws an exception 

これは私がこのコードから取得するエラーメッセージです:

42601: syntax error at or near "(" 

[NpgsqlException (0x80004005): 42601: syntax error at or near "("] 
    Npgsql.NpgsqlConnector.DoReadSingleMessage(DataRowLoadingMode dataRowLoadingMode, Boolean returnNullForAsyncMessage, Boolean isPrependedMessage) +445 
    Npgsql.NpgsqlConnector.ReadSingleMessage(DataRowLoadingMode dataRowLoadingMode, Boolean returnNullForAsyncMessage) +282 
    Npgsql.NpgsqlCommand.Execute(CommandBehavior behavior) +270 
    Npgsql.NpgsqlCommand.ExecuteNonQueryInternal() +177 
    Npgsql.NpgsqlCommand.ExecuteNonQuery() +21 
    System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.<NonQuery>b__0(DbCommand t, DbCommandInterceptionContext`1 c) +26 
    System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch(TTarget target, Func`3 operation, TInterceptionContext interceptionContext, Action`3 executing, Action`3 executed) +129 
    System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.NonQuery(DbCommand command, DbCommandInterceptionContext interceptionContext) +602 
    System.Data.Entity.Internal.InterceptableDbCommand.ExecuteNonQuery() +151 
    System.Data.Entity.Core.Mapping.Update.Internal.DynamicUpdateCommand.Execute(Dictionary`2 identifierValues, List`1 generatedValues) +1045 
    System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update() +221 

これは、データベースに対して実行されるクエリです。

このクエリは、明らかにネストされたでは機能しないことを理解していますテーブル名ではなく0になります。

誰かが同じエラーに遭遇しましたか?私が見逃す可能性のある設定がありますか?

答えて

2

このエラーは、影響を受けたテーブルののが不足しているために発生しました。

warning 6002: The table/view '[database.schema.TableName]' does not have a primary key defined. The key has been inferred and the definition was created as a read-only table/view. 

私がモデルだった最初の時間を逃している必要がありますデータベース(からモデルを更新すると、Visual Studioは、出力]タブに次のメッセージを示しています

.edmxファイルには、実際に次のメッセージが含まれています生成される):

The model was generated with warnings or errors.ServiceModel.edmxPlease see the Error List for more details. These issues must be fixed before running your application. 
関連する問題