We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Submitted by Brandon D'Imperio on 11/9/2015 12:00:00 AM 6 votes on UserVoice prior to migration
if I have a method with parameters, and close one of the params with another method call, I lose all parameter names unless I copy and paste them:
let internal save connection apptId apptPatientId apptPatientInfoId apptProviderScheduledId apptFacilityId apptStartTime apptEndTime apptTypeId apptStatus apptBillingStage apptLoS apptCheckInFlag apptCheckInTime apptCheckOutTime apptForeignEhrId apptAccidentRelated apptAccidentId apptAccidentDate apptAccidentState presentingCondition notesToBiller isChecked apptPrimaryGuarantorType admitStatus (admitFacilityId:int Nullable) referralPcp = let admitStatus = if String.IsNullOrEmpty(admitStatus) then null else admitStatus getScalar connection false (fun db -> db.UspAppointmentsInsUpd(apptId, apptPatientId, apptPatientInfoId, apptProviderScheduledId, apptFacilityId, apptStartTime, apptEndTime, apptTypeId, apptStatus, apptBillingStage, apptLoS, apptCheckInFlag, apptCheckInTime, apptCheckOutTime, apptForeignEhrId, apptAccidentRelated, apptAccidentId, apptAccidentDate, apptAccidentState, presentingCondition, notesToBiller, isChecked, apptPrimaryGuarantorType,admitStatus=admitStatus,admitFacilityId=admitFacilityId,referralPcp=referralPcp))
then want to close the first parameter with
let SaveConn con = save (SqlConn.Conn con)
I lose all the remaining parameter names on the tooltip. Instead I have to do the following
let Save apptId apptPatientId apptPatientInfoId apptProviderScheduledId apptFacilityId apptStartTime apptEndTime apptTypeId apptStatus apptBillingStage apptLoS apptCheckInFlag apptCheckInTime apptCheckOutTime apptForeignEhrId apptAccidentRelated apptAccidentId apptAccidentDate apptAccidentState presentingCondition notesToBiller isChecked apptPrimaryGuarantorType admitStatus admitFacilityId referralPcp connString = save (ConnectionString connString) apptId apptPatientId apptPatientInfoId apptProviderScheduledId apptFacilityId apptStartTime apptEndTime apptTypeId apptStatus apptBillingStage apptLoS apptCheckInFlag apptCheckInTime apptCheckOutTime apptForeignEhrId apptAccidentRelated apptAccidentId apptAccidentDate apptAccidentState presentingCondition notesToBiller isChecked apptPrimaryGuarantorType admitStatus admitFacilityId referralPcp
My suggestion is to lift the remaining parameters needed to finish the method call from the callee
** by fslang-admin on 2/4/2016 12:00:00 AM **
Thank you for the suggestion. I have marked it declined per my comment below Best wishes Don Syme, F# Core Library and Language Evolution
Original UserVoice Submission Archived Uservoice Comments
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Lift parameter names from the callee [10617357]
Submitted by Brandon D'Imperio on 11/9/2015 12:00:00 AM
6 votes on UserVoice prior to migration
if I have a method with parameters, and close one of the params with another method call, I lose all parameter names unless I copy and paste them:
then want to close the first parameter with
I lose all the remaining parameter names on the tooltip.
Instead I have to do the following
My suggestion is to lift the remaining parameters needed to finish the method call from the callee
Response
** by fslang-admin on 2/4/2016 12:00:00 AM **
Thank you for the suggestion. I have marked it declined per my comment below
Best wishes
Don Syme, F# Core Library and Language Evolution
Original UserVoice Submission
Archived Uservoice Comments
The text was updated successfully, but these errors were encountered: