前言
本節(jié)我們來看看ASP.NET Core MVC中比較常用的功能,對于導入和導出目前仍在探索中,項目需要自定義列合并,所以事先探索了如何在ASP.NET Core MVC進行導入、導出,更高級的內(nèi)容還需等我學習再給出。
EntityFramework Core
在學習ASP.NET Core MVC之前我們來看看在EF Core中如何更新對象指定屬性,這個問題之前我們已經(jīng)探討過,但是還是存在一點問題,請往下看。
public void Update(T entity, params Expression<Func<T, object>>[] properties) { _context.Entry(entity).State = EntityState.Unchanged; foreach (var property in properties) { var propertyName = ExpressionHelper.GetExpressionText(property); _context.Entry(entity).Property(propertyName).IsModified = true; } }
網(wǎng)友評論