sqlsugar/Src/Asp.Net/SqlSugar/Json2Sql/Provider/Insertable/PrivateProperty.cs

21 lines
583 B
C#
Raw Permalink Normal View History

2025-05-11 16:20:50 +08:00
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SqlSugar
{
public partial class JsonInsertableProvider : IJsonInsertableProvider<JsonInsertResult>
{
private ISqlSugarClient context;
private JObject jObject;
private JsonCommonProvider jsonCommonProvider;
private string TableName { get; set; }
private string IdentityId { get; set; }
private int Count { get; set; }
private IInsertable<Dictionary<string, object>> sugarInsertable;
}
}