I'm looking for an approach to auto-generate a record everytime a class I have is persisted to the data base, without triggers or database functions.
My classe Item is something like that
/// <summary>
/// Modelo de representação do Item (Produto)
/// </summary>
[Table("Item")]
public class Item : History
{
/// <summary>
/// Id único gerador pelo sistema
/// </summary>
[Key]
public long Id { get; set; }
/// <summary>
/// Nome do produto
/// </summary>
public string Name { get; set; }
/// <summary>
/// Código de barras
/// </summary>
public string BarCode { get; set; }
/// <summary>
/// Código da imagem do produto na base de dados
/// </summary>
public long Image_Id { get; set; }
}
My repository class of Item has an insert to persist it. Like that
/// <summary>
/// Repositório do objeto Item
/// </summary>
public class ItemRepository : BaseRepository<Item>
{
#region Constructors
/// <summary>
/// Inicializa o repositório de Item
/// </summary>
/// <param name="context">Contexto usado em sua inicialização</param>
public ItemRepository(DbContext context) : base(context)
{
}
#endregion
#region Methods
public override void Insert(Item entity)
{
base.Insert(entity);
}
#endregion
}
My question is: How can I generate a record to my objetc Item__History which represents a mirror for my item object in this momento? Everytime I update this objetct Item, I need the method of my repository (update) to generate another insert into Item__History, creating another object that reflects this exact moment of Item.
Later, I can go Item__History and check all the states this class Item already have.
I can do It by creating a model for Item__History (ok, it's created) and creating a repository class to Item__History, and during the insert/update of Item inside the repository class, I create an instance of Item__History, copy all the values into this new instance and call the Item__Repository to insert it to. I'm not sure if it's the best approach, since I'll have a lot of classes which I want to manager the history, and don't want to have a lot of "XXX___History" classes and repositories.
Sorry, btw if the question isn't good enough. I hope someone understand it.
What about if You create
GenericHistoryRepository
class withIGenericHistoryRepository
interface and implement methodsAdd()
,AddList()
,Update()
andRemove()
. Such a generic class you will be able to take advantage of its various entities. You can follow this code.Usage