PrivateProperty.cs 583 B

1234567891011121314151617181920
  1. using Newtonsoft.Json.Linq;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace SqlSugar
  7. {
  8. public partial class JsonInsertableProvider : IJsonInsertableProvider<JsonInsertResult>
  9. {
  10. private ISqlSugarClient context;
  11. private JObject jObject;
  12. private JsonCommonProvider jsonCommonProvider;
  13. private string TableName { get; set; }
  14. private string IdentityId { get; set; }
  15. private int Count { get; set; }
  16. private IInsertable<Dictionary<string, object>> sugarInsertable;
  17. }
  18. }