2018年3月20日 星期二

在 local 產生檔案

bower安裝 angular-file-saver
angular.module('module1', ['ngFileSaver',....]).controller('ctrl', function (FileSaver, Blob...
var data = new Blob([檔案字串], { type: 'text/plain;charset=utf-8' });
FileSaver.saveAs(data, "aaa.txt");


Entity Framework 建立新物件並儲存後馬上取得關聯資料

使用 CreateProxy 建立物件,不要直接 new var newmodel = _contextXXX.CreateProxy<yyy>(); ... _contextXXX.yyy.Add(newmodel); await _contextXXX.SaveC...