<!-- What problem are you trying to solve? --> As title. <!-- Describe the solution you'd like --> Transform to ```c# EF.Functions.DateTimeFromParts( dateOnly.Year, dateOnly.Month, dateOnly.Day, timeOnly.Hour, timeOnly.Minute, timeOnly.Second, timeOnly.Millisecond) ``` which would then translate (using the current mapping of `EF.Functions.DateTimeFromParts`) to the SQL ```sql DATETIMEFROMPARTS( DATEPART(year, dateOnly), DATEPART(month, dateOnly), DATEPART(day, dateOnly), DATEPART(hour, timeOnly), DATEPART(minute, timeOnly), DATEPART(second, timeOnly), DATEPART(millisecond, timeOnly)) ```