FSharp.Data 'System.MissingMethodException' when calling Freebase Provider from C#
问题 Hi I have this piece of code on F#, if I test it from the F# Interactive Editor both isPalindrome and Extract methods work well: namespace Portable3 open FSharp open FSharp.Data open Microsoft.FSharp.Linq open FSharp.Data.FreebaseOperators open MyTrip.Model.MyTrip open MyTrip.Model.FreeBase open System.Runtime open System.Linq module math = let isPalindrome (str : string) = let rec check(s : int, e : int) = if s = e then true elif str.[s] <> str.[e] then false else check(s + 1, e - 1) check(0