Test EF / Mysql

This commit is contained in:
2018-10-05 00:18:37 +02:00
parent 5a690e4dbe
commit d2c1a9d5f9
7 changed files with 76 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace LaDOSE.Entity
{
public class Game
{
public int Id { get; set; }
public string Name { get; set; }
public string ImgUrl { get; set; }
}
}

View File

@@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
</Project>