Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SQL2Linked
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coscine
backend
scripts
SQL2Linked
Merge requests
!1
New: SQL2Linked Application for migrating the structural to linked data
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
New: SQL2Linked Application for migrating the structural to linked data
Issue/1781-sqlToLinked
into
dev
Overview
0
Commits
3
Pipelines
4
Changes
13
Merged
New: SQL2Linked Application for migrating the structural to linked data
Petar Hristov
requested to merge
Issue/1781-sqlToLinked
into
dev
May 18, 2022
Overview
0
Commits
3
Pipelines
4
Changes
13
coscine/issues#1781
0
0
Merge request reports
Compare
dev
version 1
8bc01ae7
May 18, 2022
dev (base)
and
latest version
latest version
5d50a87f
3 commits,
May 18, 2022
version 1
8bc01ae7
2 commits,
May 18, 2022
13 files
+
589
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
src/SQL2Linked/Implementations/ProjectStructuralData.cs
0 → 100644
+
15
−
0
View file @ 5d50a87f
Edit in single-file editor
Open in Web IDE
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