1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
using System;
using System.Linq;
using System.Threading.Tasks;
using System.Collections.Generic;
using Database;
using Classes;
using Aggregator.Parser;
namespace Main {
internal static class Program {
private static async Task Main(string[] args) {
List<Config> configs = new List<Config>() {
new Config() { //BBC
Source = "BBC",
Title = 0,
Description = 1,
ArticleLink = 2,
ImageLink = 5,
PublishDate = 4
},
new Config(){ //Sky
Source = "Sky",
Title = 0,
Description = 2,
ArticleLink = 1,
ImageLink = 7,
PublishDate = 3
},
new Config(){ //ABC
Source = "ABC",
Title = 7,
Description = 11,
ArticleLink = 8,
ImageLink = 0,
PublishDate = 10
}
};
string[] xmls = new[] {
await Download.DownloadXML("http://feeds.bbci.co.uk/news/rss.xml")
};
List<Article> articles = ParserService.ParseMultiple(xmls, configs).ToList();
using (var db = new DatabaseContext()) {
int records = await db.InsertArticles(articles);
Console.WriteLine($"{records} written to database");
}
}
}
}
|