From 67fdec9009f3fbd8a061cfc9e06320d22bb66028 Mon Sep 17 00:00:00 2001 From: binarydad Date: Thu, 22 Apr 2021 13:45:56 -0400 Subject: [PATCH] remove TransactionId from base entity --- Entities/SalesforceEntity.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Entities/SalesforceEntity.cs b/Entities/SalesforceEntity.cs index f87e1d8..d0a25b5 100644 --- a/Entities/SalesforceEntity.cs +++ b/Entities/SalesforceEntity.cs @@ -1,7 +1,5 @@ using Newtonsoft.Json; using System; -using System.Collections.Generic; -using System.Text; namespace Salesforce.NET.Entities { @@ -19,11 +17,6 @@ namespace Salesforce.NET.Entities [JsonProperty("id")] public string RecordId { get; set; } - /// - /// Used to correlate a record insert to a batch - /// - [QueryIgnore] - public int TransactionId { get; set; } [QueryIgnore] public RecordAttributes Attributes { get; set; }