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.
61 lines
1.8 KiB
61 lines
1.8 KiB
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class OracleQueryable<T> : QueryableProvider<T>
|
|
{
|
|
public override ISugarQueryable<T> With(string withString)
|
|
{
|
|
return this;
|
|
}
|
|
protected override List<string> GetIdentityKeys()
|
|
{
|
|
return this.EntityInfo.Columns.Where(it => it.OracleSequenceName.HasValue()).Select(it => it.DbColumnName).ToList();
|
|
}
|
|
}
|
|
public class OracleQueryable<T, T2> : QueryableProvider<T, T2>
|
|
{
|
|
|
|
}
|
|
public class OracleQueryable<T, T2, T3> : QueryableProvider<T, T2, T3>
|
|
{
|
|
|
|
}
|
|
public class OracleQueryable<T, T2, T3, T4> : QueryableProvider<T, T2, T3, T4>
|
|
{
|
|
|
|
}
|
|
public class OracleQueryable<T, T2, T3, T4, T5> : QueryableProvider<T, T2, T3, T4, T5>
|
|
{
|
|
|
|
}
|
|
public class OracleQueryable<T, T2, T3, T4, T5, T6> : QueryableProvider<T, T2, T3, T4, T5, T6>
|
|
{
|
|
|
|
}
|
|
public class OracleQueryable<T, T2, T3, T4, T5, T6, T7> : QueryableProvider<T, T2, T3, T4, T5, T6, T7>
|
|
{
|
|
|
|
}
|
|
public class OracleQueryable<T, T2, T3, T4, T5, T6, T7, T8> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8>
|
|
{
|
|
|
|
}
|
|
public class OracleQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9>
|
|
{
|
|
|
|
}
|
|
public class OracleQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10>
|
|
{
|
|
|
|
}
|
|
public class OracleQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
|
|
{
|
|
|
|
}
|
|
public class OracleQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
|
|
{
|
|
|
|
}
|
|
}
|