Esempio n. 1
0
 public static string GetValue(this SparqlResult sResult, string property)
 {
     return(sResult.Any(res => res.Key == property)
         ? sResult.FirstOrDefault(res => res.Key == property).Value?.ToString()
         : string.Empty);
 }