Files
SqlSugar/Src/Asp.Net/SqlSugar/Abstract/ExecuteNavProvider/DeleteNavOneToMany.cs
sunkaixuan f5ff95e996 Delete nav
2022-07-07 22:34:03 +08:00

20 lines
437 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
public partial class DeleteNavProvider<Root, T> where T : class, new() where Root : class, new()
{
private void DeleteOneToMany<TChild>(string name, EntityColumnInfo nav) where TChild : class, new()
{
throw new NotImplementedException();
}
}
}