mvc ajax json post applicaiton を作成すると、json 動的オブジェクトをエンティティに変換する際に問題が発生します。
私のアプリでは、ムービーはビジネス エンティティであり、json オブジェクトにはムービー エンティティよりも行ステータス プロパティがあります。json データが mvc サーバー側にポストされると、動的オブジェクトに変換できます。この段階ではすべてが OK です。ただし、各行ステータスにいくつかのロジックを処理した後、動的オブジェクトをムービー ビジネス エンティティに変換し、データベース トランザクション ロジックを開始する必要があります。しかし、オブジェクトをキャストするために別の方法を試しても問題があります。
誰かが同じキャスト方法を使用しましたか? あなたのアドバイスや返信に感謝します。
public class movie
{
public int id
{
get;
set;
}
public string title
{
get;
set;
}
}
/// <summary>
/// Convert Json Object to Entity
/// </summary>
/// <param name="id">ajax post value
/// format: {"id": "{\"id\": 1, \"title\": \"sharlock\", \"RowStatus\": \"deleted\"}"}
/// </param>
[AllowAnonymous]
[HttpPost]
public void DoJsonSimple(string id)
{
string title;
var entity = Newtonsoft.Json.JsonConvert.DeserializeObject<dynamic>(id);
//*** entity is dynamic object
//*** entity.id, entity.title and entity.RowStauts can be accessed.
int first = entity.id;
var status = entity.RowStatus;
if (status == "deleted")
{
//*** m1 is null
//*** m1.title can not be accessed
movie m1 = entity as movie;
title = m1.title;
//*** m2 is an empty object
//*** m2.id is 0, m2.title is null
var m2 = AutoMapperHelper<dynamic, movie>.AutoConvertDynamic(entity);
title = m2.title;
//*** Exception: Object must implement IConvertible.
var m3 = EmitMapper.EMConvert.ChangeTypeGeneric<dynamic, movie>(entity);
title = m3.title;
}
}