コミュニティの誰かがインメモリ データベース (明るい星) で作業する機会があるかどうかはわかりませんが、以下のコードを使用してレコードを更新しようとしていますが、更新できません。
public void ChangePrice(string strId)
{
string configTDDB = ConfigurationManager.AppSettings["TDSDB"];
double Price = 10.10;
IMDB.IMDBEntityContext TDcontext = new IMDB.IMDBEntityContext(configTDDB);
var claim = bdcontext.Price_Lists.FirstOrDefault<TDParser.IMDB.IPrice_List>(m => m.NDC == strId);
claim.Price = Price;
TDContext.SaveChanges();
}
これに関する提案/ヘルプは非常に役立ちます。