using System.Linq.Dynamic.Core;
using System.Linq.Dynamic.Core.CustomTypeProviders;
public string UserName { get; set; }
public bool TryParseExample(out int i)
public static void Main()
new User { UserName = "A" },
new User { UserName = "B" }
var result = users.Select("TryParseExample(out _)");