old_flsystem/类库/SqlSugar/Realization/Oracle/Deleteable/OracleDeleteable.cs

16 lines
411 B
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SqlSugar
{
public class OracleDeleteable<T>:DeleteableProvider<T> where T:class,new()
{
protected override List<string> GetIdentityKeys()
{
return this.EntityInfo.Columns.Where(it => it.OracleSequenceName.HasValue()).Select(it => it.DbColumnName).ToList();
}
}
}