Я использую ASP.NET MVC 3
и Entity Framework code first CTP 5
. Мне было интересно, если можно добавить дополнительные свойства, которые не отображаются в столбце таблицы?
У меня есть класс новостей, и он определяется так:
public class News : Entity
{
public int NewsId { get; set; }
public string Title { get; set; }
public string Body { get; set; }
public bool Active { get; set; }
}
Класс контекста моей базы данных:
public class MyContext : DbContext
{
public DbSet<News> Newses { get; set; }
}
В классе сущностей у меня есть свойство, определенное как:
public IList<RuleViolation> RuleViolations { get; set; }
У меня пока нет кода этой части, но я хочу, чтобы все нарушенные правила были добавлены в этот список при проверке объекта. Я получаю ошибку:
One or more validation errors were detected during model generation:
System.Data.Edm.EdmEntityType: : EntityType 'RuleViolation' has no key defined. Define the key for this EntityType.
System.Data.Edm.EdmEntitySet: EntityType: The EntitySet RuleViolations is based on type RuleViolation that has no keys defined.
Вот мой код репозитория:
public News FindById(int newsId)
{
return context.Database.SqlQuery<News>("News_FindById @NewsId",
new SqlParameter("NewsId", newsId)).FirstOrDefault();
}
ОБНОВЛЕНИЕ 2011-03-02:
Вот мой Entity
класс:
public class Entity
{
public IList<RuleViolation> RuleViolations { get; set; }
public bool Validate()
{
// Still needs to be coded
bool isValid = true;
return isValid;
}
}
Вот мой RuleViolation
класс:
public class RuleViolation
{
public RuleViolation(string parameterName, string errorMessage)
{
ParameterName = parameterName;
ErrorMessage = errorMessage;
}
public string ParameterName { get; set; }
public string ErrorMessage { get; set; }
}
Вот мой контекстный класс:
public class MyContext : DbContext
{
public DbSet<News> Newses { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<News>().Ignore(n => n.RuleViolations);
}
}