Beispiel #1
0
 /// <summary>
 /// Executes the statement
 /// </summary>
 /// <param name="myIGraphDBSession">The DBSession to start new transactions</param>
 /// <param name="myDBContext">The current dbContext inside an readonly transaction. For any changes, you need to start a new transaction using <paramref name="myIGraphDBSession"/></param>
 /// <returns>The result of the query</returns>
 public override QueryResult Execute(IGraphDBSession myIGraphDBSession)
 {
     var qresult = myIGraphDBSession.Truncate(_TypeName);
     qresult.PushIExceptional(ParsingResult);
     return qresult;
 }