[.netcore] Hướng dẫn set column type ntext trong Fluent API Configurations EF 6

Hướng dẫn set collumn type ntext trong Fluent API Configurations EF 6 ModelBuilder

Các bạn dùng Fluent API Methods là HasColumnType

Vd như sau:

modelBuilder.Entity<tablePost>(e =>
            {
                e.ToTable("tablePost");
                e.HasKey(p => new { p.PostId });
                e.Property(p => p.Detail).HasColumnType("ntext");
            });

Chúc các bạn thành công.

Bình luận