public static SparqlVariables Parse(SqlString s)
    {
        SparqlVariables sr = new SparqlVariables();
        sr.data = new Dictionary<string, string>();

        // ... to do!
        // build this so that XML and other represetnations of variables can be passed so that this data type can be used in TSQL
        // ..

        return sr;
    }
Esempio n. 2
0
 public static void SparqlQuery_FillRow(object sparqlResultObj, out SparqlVariables data)
 {
     MySparqlResult results = (MySparqlResult)sparqlResultObj;
     data = results.Data;
 }