mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-04-23 14:42:51 +08:00
chore: 🔨 iSelect 扩展方法增强
[skip ci]
This commit is contained in:
parent
4874a58eee
commit
f5203782aa
@ -9,6 +9,7 @@ public static class ISelectExtensions
|
|||||||
/// 无锁无等待
|
/// 无锁无等待
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static ISelect<T1> WithNoLockNoWait<T1>(this ISelect<T1> me)
|
public static ISelect<T1> WithNoLockNoWait<T1>(this ISelect<T1> me)
|
||||||
|
where T1 : class
|
||||||
{
|
{
|
||||||
return me
|
return me
|
||||||
#if DBTYPE_SQLSERVER
|
#if DBTYPE_SQLSERVER
|
||||||
@ -21,6 +22,7 @@ public static class ISelectExtensions
|
|||||||
/// 无锁无等待
|
/// 无锁无等待
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static ISelect<T1, T2> WithNoLockNoWait<T1, T2>(this ISelect<T1, T2> me)
|
public static ISelect<T1, T2> WithNoLockNoWait<T1, T2>(this ISelect<T1, T2> me)
|
||||||
|
where T1 : class //
|
||||||
where T2 : class
|
where T2 : class
|
||||||
{
|
{
|
||||||
return me
|
return me
|
||||||
@ -34,6 +36,7 @@ public static class ISelectExtensions
|
|||||||
/// 无锁无等待
|
/// 无锁无等待
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static ISelect<T1, T2, T3> WithNoLockNoWait<T1, T2, T3>(this ISelect<T1, T2, T3> me)
|
public static ISelect<T1, T2, T3> WithNoLockNoWait<T1, T2, T3>(this ISelect<T1, T2, T3> me)
|
||||||
|
where T1 : class //
|
||||||
where T2 : class //
|
where T2 : class //
|
||||||
where T3 : class
|
where T3 : class
|
||||||
{
|
{
|
||||||
@ -48,6 +51,7 @@ public static class ISelectExtensions
|
|||||||
/// 无锁无等待
|
/// 无锁无等待
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static ISelect<T1, T2, T3, T4> WithNoLockNoWait<T1, T2, T3, T4>(this ISelect<T1, T2, T3, T4> me)
|
public static ISelect<T1, T2, T3, T4> WithNoLockNoWait<T1, T2, T3, T4>(this ISelect<T1, T2, T3, T4> me)
|
||||||
|
where T1 : class //
|
||||||
where T2 : class //
|
where T2 : class //
|
||||||
where T3 : class //
|
where T3 : class //
|
||||||
where T4 : class
|
where T4 : class
|
||||||
@ -63,6 +67,7 @@ public static class ISelectExtensions
|
|||||||
/// 无锁无等待
|
/// 无锁无等待
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static ISelect<T1, T2, T3, T4, T5> WithNoLockNoWait<T1, T2, T3, T4, T5>(this ISelect<T1, T2, T3, T4, T5> me)
|
public static ISelect<T1, T2, T3, T4, T5> WithNoLockNoWait<T1, T2, T3, T4, T5>(this ISelect<T1, T2, T3, T4, T5> me)
|
||||||
|
where T1 : class //
|
||||||
where T2 : class //
|
where T2 : class //
|
||||||
where T3 : class //
|
where T3 : class //
|
||||||
where T4 : class //
|
where T4 : class //
|
||||||
@ -79,6 +84,7 @@ public static class ISelectExtensions
|
|||||||
/// 无锁无等待
|
/// 无锁无等待
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static ISelect<T1, T2, T3, T4, T5, T6> WithNoLockNoWait<T1, T2, T3, T4, T5, T6>(this ISelect<T1, T2, T3, T4, T5, T6> me)
|
public static ISelect<T1, T2, T3, T4, T5, T6> WithNoLockNoWait<T1, T2, T3, T4, T5, T6>(this ISelect<T1, T2, T3, T4, T5, T6> me)
|
||||||
|
where T1 : class //
|
||||||
where T2 : class //
|
where T2 : class //
|
||||||
where T3 : class //
|
where T3 : class //
|
||||||
where T4 : class //
|
where T4 : class //
|
||||||
|
Loading…
x
Reference in New Issue
Block a user