sunkaixuan
2 years ago
10 changed files with 206 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Linq.Expressions; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace SqlSugar |
|||
{ |
|||
public class DeleteNavProvider<Root,T> |
|||
{ |
|||
|
|||
public List<Root> Roots { get; set; } |
|||
|
|||
public DeleteNavProvider<Root,TChild> ThenInclude<TChild>(Expression<Func<T,TChild>> expression) |
|||
{ |
|||
return null; |
|||
} |
|||
|
|||
public DeleteNavProvider<Root,Root> AsNav() |
|||
{ |
|||
return null; |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Linq.Expressions; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace SqlSugar |
|||
{ |
|||
public class InsertNavProvider<Root,T> |
|||
{ |
|||
|
|||
public List<Root> Roots { get; set; } |
|||
|
|||
public InsertNavProvider<Root,TChild> ThenInclude<TChild>(Expression<Func<T,TChild>> expression) |
|||
{ |
|||
return null; |
|||
} |
|||
|
|||
public InsertNavProvider<Root,Root> AsNav() |
|||
{ |
|||
return null; |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
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; |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue