2024-07-19 17:08:37 +00:00
|
|
|
|
using System;
|
2024-07-23 07:40:10 +00:00
|
|
|
|
using Avalonia;
|
2024-07-23 18:20:01 +00:00
|
|
|
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using CsvHelper.Configuration;
|
|
|
|
|
using CsvHelper;
|
2024-08-15 19:46:43 +00:00
|
|
|
|
using StarsAssistant.Model;
|
2024-07-23 18:20:01 +00:00
|
|
|
|
using System.Globalization;
|
|
|
|
|
|
2024-07-23 07:40:10 +00:00
|
|
|
|
|
2024-08-15 19:46:43 +00:00
|
|
|
|
namespace StarsAssistant;
|
2024-07-23 07:40:10 +00:00
|
|
|
|
|
|
|
|
|
sealed class Program
|
|
|
|
|
{
|
|
|
|
|
// Initialization code. Don't use any Avalonia, third-party APIs or any
|
|
|
|
|
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
|
|
|
|
|
// yet and stuff might break.
|
|
|
|
|
[STAThread]
|
2024-07-23 18:20:01 +00:00
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
// __createTestData();
|
|
|
|
|
|
|
|
|
|
BuildAvaloniaApp()
|
2024-07-23 07:40:10 +00:00
|
|
|
|
.StartWithClassicDesktopLifetime(args);
|
2024-07-23 18:20:01 +00:00
|
|
|
|
}
|
2024-07-23 07:40:10 +00:00
|
|
|
|
|
|
|
|
|
// Avalonia configuration, don't remove; also used by visual designer.
|
|
|
|
|
public static AppBuilder BuildAvaloniaApp()
|
|
|
|
|
=> AppBuilder.Configure<App>()
|
|
|
|
|
.UsePlatformDetect()
|
|
|
|
|
.WithInterFont()
|
2024-07-23 18:20:01 +00:00
|
|
|
|
.LogToTrace();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static void __createTestData ()
|
|
|
|
|
{
|
|
|
|
|
using var db = new StarsDatabase("stars.sqlite");
|
|
|
|
|
|
|
|
|
|
db.Database.EnsureDeleted();
|
|
|
|
|
db.Database.EnsureCreated();
|
|
|
|
|
|
|
|
|
|
// Note: This sample requires the database to be created before running.
|
|
|
|
|
Console.WriteLine($"Database path: {db.DbPath}.");
|
|
|
|
|
|
|
|
|
|
var config = CsvConfiguration.FromAttributes<Planet>(CultureInfo.InvariantCulture);
|
|
|
|
|
config.Delimiter = "\t";
|
|
|
|
|
config.Escape = '\0';
|
|
|
|
|
config.MissingFieldFound = null;
|
|
|
|
|
|
|
|
|
|
using (var reader = new StreamReader("/home/torben/goingth/GOINGTH.p1", System.Text.Encoding.Latin1))
|
|
|
|
|
using (var csv = new CsvReader(reader, config))
|
|
|
|
|
{
|
2024-08-15 20:17:12 +00:00
|
|
|
|
List<CSV.Planet> records = csv.GetRecords<CSV.Planet>().ToList();
|
|
|
|
|
foreach (CSV.Planet csvp in records)
|
2024-07-23 18:20:01 +00:00
|
|
|
|
{
|
2024-08-15 20:17:12 +00:00
|
|
|
|
Planet p = new Planet{ Name = csvp.Name };
|
|
|
|
|
csvp.UpdateDbPlanet(p);
|
2024-07-23 18:20:01 +00:00
|
|
|
|
db.Add(p);
|
|
|
|
|
}
|
|
|
|
|
db.SaveChanges();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2024-07-23 07:40:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2024-07-19 17:08:37 +00:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2024-07-19 20:00:13 +00:00
|
|
|
|
using CsvHelper.Configuration;
|
|
|
|
|
using CsvHelper;
|
2024-08-15 19:46:43 +00:00
|
|
|
|
using StarsAssistant.model;
|
2024-07-23 07:40:10 +00:00
|
|
|
|
|
2024-07-19 17:08:37 +00:00
|
|
|
|
|
|
|
|
|
using var db = new StarsDatabase("stars.sqlite");
|
|
|
|
|
|
|
|
|
|
db.Database.EnsureDeleted();
|
|
|
|
|
db.Database.EnsureCreated();
|
|
|
|
|
|
|
|
|
|
// Note: This sample requires the database to be created before running.
|
|
|
|
|
Console.WriteLine($"Database path: {db.DbPath}.");
|
|
|
|
|
|
2024-07-19 20:00:13 +00:00
|
|
|
|
var config = CsvConfiguration.FromAttributes<Planet>(CultureInfo.InvariantCulture);
|
|
|
|
|
config.Delimiter = "\t";
|
|
|
|
|
config.Escape = '\0';
|
|
|
|
|
config.MissingFieldFound = null;
|
|
|
|
|
|
|
|
|
|
using (var reader = new StreamReader("/home/torben/goingth/GOINGTH.p1", Encoding.Latin1))
|
|
|
|
|
using (var csv = new CsvReader(reader, config))
|
|
|
|
|
{
|
|
|
|
|
List<Planet> records = csv.GetRecords<Planet>().ToList();
|
|
|
|
|
foreach (Planet p in records)
|
|
|
|
|
{
|
|
|
|
|
db.Add(p);
|
|
|
|
|
}
|
|
|
|
|
db.SaveChanges();
|
|
|
|
|
}
|
2024-07-23 07:40:10 +00:00
|
|
|
|
*/
|
2024-07-19 20:00:13 +00:00
|
|
|
|
|
2024-07-19 17:08:37 +00:00
|
|
|
|
/*
|
|
|
|
|
// Create
|
|
|
|
|
Console.WriteLine("Inserting a new blog");
|
|
|
|
|
db.Add(new Blog { Url = "http://blogs.msdn.com/adonet" });
|
|
|
|
|
db.SaveChanges();
|
|
|
|
|
|
|
|
|
|
// Read
|
|
|
|
|
Console.WriteLine("Querying for a blog");
|
|
|
|
|
var blog = db.Blogs
|
|
|
|
|
.OrderBy(b => b.BlogId)
|
|
|
|
|
.First();
|
|
|
|
|
|
|
|
|
|
// Update
|
|
|
|
|
Console.WriteLine("Updating the blog and adding a post");
|
|
|
|
|
blog.Url = "https://devblogs.microsoft.com/dotnet";
|
|
|
|
|
blog.Posts.Add(
|
|
|
|
|
new Post { Title = "Hello World", Content = "I wrote an app using EF Core!" });
|
|
|
|
|
db.SaveChanges();
|
|
|
|
|
|
|
|
|
|
// Delete
|
|
|
|
|
// Console.WriteLine("Delete the blog");
|
|
|
|
|
// db.Remove(blog);
|
|
|
|
|
// db.SaveChanges();
|
|
|
|
|
*/
|