/// <summary> /// Delete for ErrorMapping object /// if excepion happeneds during Table operation it must be cought in calling method. /// </summary> /// <param name="obj">instance of ErrorMapping class to be inserted </param> /// <param name="AddToContext">bool paremeter tell the Context to attach object if it is not tracked by this instance of the Context </param> public void DeleteObject(ErrorMapping obj, bool AddToContext) { if (AddToContext) servCtx.AttachTo(TableName, obj.InternalEntity, "*"); servCtx.DeleteObject(obj.InternalEntity); servCtx.SaveChangesWithRetries(); }
/// <summary> /// Insert for ErrorMapping object /// if excepion happeneds during Table operation it must be cought in calling method. /// </summary> /// <param name="obj">instance of ErrorMapping class to be inserted </param> public void AddObject(ErrorMapping obj ) { servCtx.AddObject(TableName, obj.InternalEntity); servCtx.SaveChangesWithRetries(); }