Skip to content
Snippets Groups Projects

New: SQL2Linked Application for migrating the structural to linked data

13 files
+ 589
0
Compare changes
  • Side-by-side
  • Inline

Files

using Coscine.Database.DataModel;
using Coscine.Database.Models;
using VDS.RDF;
namespace SQL2Linked.Implementations
{
public class ProjectStructuralData : StructuralData<Project, ProjectModel>
{
public override IEnumerable<IGraph> ConvertToLinkedData(IEnumerable<Project> entries)
{
// ToDo: Implement
throw new NotImplementedException();
}
}
}
\ No newline at end of file
Loading