我是 F# 的新手。我有一个执行一些数据库操作的函数。我正在努力返回结果。
let funcA () =
let funcB () =
// do some database operation and returns seq of records
let funcC () =
// do some other database operation returns nothing
let result = funcB ()
funcC ()
我怎样才能result
从那里回来funcA
?我需要先funcB
执行funcC