Как добавить расширенные типы объектов с метаданными, извлеченными из атрибутов свойств

Я хочу получить пользовательские атрибуты, упомянутые ниже, в breeze dataService (на стороне клиента).

namespace Tam.Framework.Web.Models
{
    [ViewAttribute("app/views/Employee.html")]//this custom class attribute
    public class Employee : BaseEntity
    {
        protected override string OnGetDescriptor()
        {
            return "some description";
        }

        public string FirstName { get; set; }

        [Display(Name = "LAST NAME")]//this custom property attribute
        public string LastName { get; set; }
    }
}

Ответы на вопрос(2)

Ваш ответ на вопрос