Implemetato databese locale con EntityFramework
This commit is contained in:
17
SteUp.Data/LocalDb/DbPathProvider.cs
Normal file
17
SteUp.Data/LocalDb/DbPathProvider.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Microsoft.Maui.Storage;
|
||||
|
||||
namespace SteUp.Data.LocalDb;
|
||||
|
||||
|
||||
public interface IDbPathProvider
|
||||
{
|
||||
string GetDbPath();
|
||||
}
|
||||
|
||||
public class DbPathProvider : IDbPathProvider
|
||||
{
|
||||
private const string DbName = "steup_db.db3";
|
||||
|
||||
public string GetDbPath() =>
|
||||
Path.Combine(FileSystem.AppDataDirectory, DbName);
|
||||
}
|
||||
Reference in New Issue
Block a user