Index: WineTrackerFinal/WineTrackerWebApi/Controllers/ShipmentController.cs
===================================================================
--- WineTrackerFinal/WineTrackerWebApi/Controllers/ShipmentController.cs	(revision 07b59f8c02fa014f20b22d77dc0da920392a065b)
+++ WineTrackerFinal/WineTrackerWebApi/Controllers/ShipmentController.cs	(revision 45df607e41ccd1bc73a674c65fadfe459e734daa)
@@ -35,5 +35,5 @@
             List<string> whereConditons = new List<string>();
             if(!string.IsNullOrEmpty(shipmentDate)) whereConditons.Add("s.shipment_date = @ShipmentDate");
-            if(!string.IsNullOrEmpty(employeeNameSurname)) whereConditons.Add("LOWER(CONCAT(e.employee_name, ' ', e.employee_surname)) Like '%' || @employeeNameSurname || '%'");
+            if(!string.IsNullOrEmpty(employeeNameSurname)) whereConditons.Add("LOWER(e.employee_name || ' ' || e.employee_surname) Like '%' || @employeeNameSurname || '%'");
             if(!string.IsNullOrEmpty(registration)) whereConditons.Add("LOWER(v.registration) = @Registration");
 
