AppendIdentity.cs 431 B

12345678910111213141516
  1. using Newtonsoft.Json.Linq;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Linq;
  6. namespace SqlSugar
  7. {
  8. public partial class JsonInsertableProvider : IJsonInsertableProvider<JsonInsertResult>
  9. {
  10. private void AppendIdentity(JToken item)
  11. {
  12. var tableInfo = jsonCommonProvider.GetTableName(item);
  13. this.IdentityId = tableInfo.TableName;
  14. }
  15. }
  16. }