コード例 #1
0
ファイル: VotesProcess.cs プロジェクト: tal952/ravendb
 protected override void Initialize()
 {
     PipelineExecuter = new SimplePipelineExecutor();
     Register(new XmlRowOperationFile(Path.Combine(_inputPath, "votes.xml")));
     Register(new AddVotesToPost(_outputPath));
 }
コード例 #2
0
ファイル: CommentsProcess.cs プロジェクト: tal952/ravendb
 protected override void Initialize()
 {
     PipelineExecuter = new SimplePipelineExecutor();
     Register(new XmlRowOperationFile(Path.Combine(_inputDirectory, "comments.xml")));
     Register(new AddCommentsToPost(_outputDirectory));
 }
コード例 #3
0
ファイル: PostsProcess.cs プロジェクト: tal952/ravendb
 protected override void Initialize()
 {
     PipelineExecuter = new SimplePipelineExecutor();
     Register(new XmlRowOperationFile(Path.Combine(inputPath, "posts.xml")));
     Register(new RowToDatabase("Posts", doc => "posts/" + doc["Id"], _outputPath));
 }
コード例 #4
0
ファイル: UsersProcess.cs プロジェクト: tal952/ravendb
 protected override void Initialize()
 {
     PipelineExecuter = new SimplePipelineExecutor();
     Register(new XmlRowOperationFile(Path.Combine(_inputDirectory, "users.xml")));
     Register(new RowToDatabase("Users", doc => "users/" + doc["Id"], _outputDirectory));
 }