I have entity class in created using entity framework which is in my Domain project
    using System;
    using System.Collections.Generic;
    public partial class Test
    {
        public int Id { get; set; }
        public int ExamID { get; set; }
        public string TestName { get; set; }
        public string StartDescription { get; set; }
        public string EndDescription { get; set; }
      }
And In my MVC application I am creating one viewmodel which I use in my view
public class TestViewModel
{
   public Test Test { get; set; }
}
Now I want to make fields related to "StartDescription" and "EndDescription", for this is am trying to use TinyMCE.
Now the problem is "[AllowHtml]" attribute is in mvc but my real entity is in other project
I am following this tutorial. http://www.codeproject.com/Articles/674754/TinyMCE-and-ASP-NET-MVC-advanced-features
 
     
    