mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-11-08 02:14:53 +08:00
26 lines
527 B
C#
26 lines
527 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class UpdateNavProvider<Root,T>
|
|
{
|
|
|
|
public List<Root> Roots { get; set; }
|
|
|
|
public UpdateNavProvider<Root,TChild> ThenInclude<TChild>(Expression<Func<T,TChild>> expression)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public UpdateNavProvider<Root,Root> AsNav()
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|