예제 #1
0
 /// <summary>
 /// Attach an entity to this repository
 /// </summary>
 /// <param name="entity">The entity to be attached</param>
 public void Attach(TEntity entity)
 {
     m_domainContext.Attach(entity);
 }