MVC3怎样设置ntext字段?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
 
namespace CloudOne.Models
{
    public class Blog
    {
        public int BlogID { get; set; }
        public int CategoryID { get; set; }
        [MaxLength(70)]
        [Required]
        public string BlogTitle { get; set; }
        [Column(TypeName="ntext")]
        [MaxLength]
        public string BlogContent { get; set; }
    }
}

 

学习交流群:364976091
上一篇:9个常用iptables配置实例


下一篇:bboss国际化标签小常识-基础数据国际化案例