У меня есть два класса с именами Contact
и ContactField
, как показано ниже.Когда ContactField
добавляется в Contact
, я надеюсь назначить SortOrder
на ContactField
автоматически.Нужно ли мне наследовать DbSet и настраивать метод Add
?Как этого добиться?
public class Foo {
private MyDbContext _db = new MyDbContext();
public void HelloWorld() {
Contact contact = ....; //< A contact from database.
ContactField field = ....; ///< A new field
.... ///< assign other properties into this `field`
field.FieldType = FieldType.Phone;
// How to automatically update `SortOrder`
// when adding field into `ContactFields`
contact.ContactFields.Add(field);
_db.SaveChanges();
}
}
public class Contact {
public long ContactID { get; set; }
public string DisplayName { get; set; }
public string DisplayCompany { get; set; }
public DateTime CreatedTime { get; set; }
public DateTime ModifiedTime { get; set; }
// Original codes
//public virtual ICollection<ContactField> ContactFields { get; set; }
public virtual MyList<ContactField> ContactFields { get; set; }
}
public class ContactField {
public long ContactFieldID { get; set; }
public int SortOrder { get; set; }
public int FieldType { get; set; }
public string Value { get; set; }
public string Label { get; set; }
[Column("ContactID")]
public int ContactID { get; set; }
public virtual Contact Contact { get; set; }
}
Редактировать: Я обнаружил, что мне нужно, чтобы отслеживать изменения ICollection<ContactField> ContactFields
.И List<T>
является реализацией ICollection<T>
.Итак, я создаю пользовательский MyList
и спрашиваю, уведомляет ли он об изменениях MyList
контейнера.Я проверю это работает или нет позже.
public class MyList<TEntity> : List<TEntity> {
public delegate OnAddHandler(object sender, TEntity entry);
public event OnAddHandler OnAddEvent;
public new void Add(TEntity entity) {
OnAddEvent(this, entity);
base.Add(entity);
}
}