「HSLProcessor」の版間の差分
(ページの作成:「[https://github.com/hsaito/HSLBase HSLProcessor]はHSLBaseのコンポーネントで[https://songs.hidekisaito.com Hideki's Songlist]の基盤技術システム。...」) |
(相違点なし)
|
2017年9月5日 (火) 02:25時点における版
HSLProcessorはHSLBaseのコンポーネントでHideki's Songlistの基盤技術システム。 データベース機能を提供する静的ページ生成システムとして機能する。
.NET CoreとEntityFramework Coreにより機能。
HSL.dbの全リストSQL構文
SELECT Title, Artists.Name, Sources.Name, Series.Name FROM main.Songs INNER JOIN Artists ON Songs.ArtistId = Artists.ArtistId INNER JOIN Sources on Songs.SourceId = Sources.SourceId INNER JOIN Series ON Sources.SeriesId = Series.SeriesId ORDER BY Title