I'm trying to set up my environment for developing asp.net vNext + Entity Framework 7 on my OSX....Apparently, there is no provider for MySQL neither PostgreSQL yet. Thus, what can be used as database for developing on OSX?...What you folks have been doin...
I'm using EntityFramework 7, beta7 and have the following entity:...C#...public class Log
{
[Column(TypeName ="datetime")]
public DateTime Date { get; set; }
...
}
...SQL...CREATE TABLE [dbo].[Logs] (
[Date] [datetime] NOT NULL,
...
)
...
We are using Entity Framework Core 2.2.4 together with an SQLite database targeting .NET Framework 4.7.2. Following Nuget packages were installed:...Microsoft.Data.Sqlite
Microsoft.EntityFrameworkCore.Sqlite
Microsoft.EntityFrameworkCore.Tools
...On my de...