解決 ASP.NET Core MySql varchar 字串截取執行個體教程

來源:互聯網
上載者:User
ASP.NET Core 中使用 MySql,如果欄位類型為 varchar,不管設定多少長度,插入或更新資料的時候,會自動截斷(截取 255 長度的字元)。

出現問題的原因,就是使用了MySql.Data.EntityFrameworkCore程式包(我使用的版本是7.0.7-m6),可能是其版本問題,升級版本的話,可能問題不會出現了。

解決方式:將 MySql 所有欄位類型為varchar(欄位長度大於 255)的欄位,類型都改為text(可以不設長度,預設為 0)。

然後,EF Core 映射配置修改如下:

protected override void OnModelCreating(ModelBuilder modelBuilder){var entity = modelBuilder.Entity<Entity>();    entity.Property(p => p.Body).HasColumnType("text"); //add HasColumnType("text")base.OnModelCreating(modelBuilder);}

參考資料:

  • .Net Core Entity Framework MySQL - string fields store 255 symbols only

  • MySql connector for .Net core truncates text to 255 characters

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.