使用 CreateProxy 建立物件,不要直接 new
var newmodel = _contextXXX.CreateProxy<yyy>();
...
_contextXXX.yyy.Add(newmodel);
await _contextXXX.SaveChangesAsync();
var aaa=newmodel.xxx.yyy;
或者直接reload 物件
await _contextXXX.Entry<yyy>(newmodel).ReloadAsync();
範例: nextTick(() => document.querySelector('input').showPicker()); ※僅支援現代瀏覽器
沒有留言:
張貼留言