Realiserung erweitert

This commit is contained in:
2026-05-08 08:15:28 +02:00
parent be14415ee9
commit 3bff3adb35
12 changed files with 443 additions and 3 deletions

View File

@@ -0,0 +1,4 @@
public static IQueryable<OrdersHost> ExcludeNextEmpty(this IQueryable<OrdersHost> entity)
{
return entity.Where(o => o.LeNo != LeTypeName.NextEmptyMiniloadSmall.ToString() && o.LeNo != LeTypeName.NextEmptyMiniloadBig.ToString());
}