You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class DeleteNavOptions
|
|
{
|
|
public bool ManyToManyIsDeleteA { get; set; }
|
|
public bool ManyToManyIsDeleteB { get; set; }
|
|
}
|
|
public class InsertNavRootOptions
|
|
{
|
|
public string[] IgnoreColumns { get; set; }
|
|
public string[] InsertColumns { get; set; }
|
|
}
|
|
public class InertNavRootOptions
|
|
{
|
|
public string[] IgnoreColumns { get; set; }
|
|
public string[] InsertColumns { get; set; }
|
|
}
|
|
public class UpdateNavRootOptions
|
|
{
|
|
public string[] IgnoreColumns { get; set; }
|
|
public string[] UpdateColumns { get; set; }
|
|
public bool IsInsertRoot { get; set; }
|
|
public bool IsDiffLogEvent { get; set; }
|
|
public object DiffLogBizData { get; set; }
|
|
}
|
|
public class UpdateNavOptions
|
|
{
|
|
public bool ManyToManyIsUpdateA { get; set; }
|
|
public bool ManyToManyIsUpdateB { get; set; }
|
|
public bool OneToManyDeleteAll { get; set; }
|
|
public Expression RootFunc { get; set; }
|
|
public Expression CurrentFunc { get; set; }
|
|
}
|
|
|
|
public class InsertNavOptions
|
|
{
|
|
public bool OneToManyIfExistsNoInsert { get; set; }
|
|
public bool ManyToManyNoDeleteMap { get; set; }
|
|
}
|
|
}
|
|
|