我想創建一個簡單的azure web應用程序,它將數據存儲在部署它的文件夾(..\wwwroot\
)中。 我從「myapp」.azurewebsites.net下載了所提供的示例代碼,但使用了EntityFramework。是否可以配置EF來使用SQLite,還是我需要實現自己的SQLite提供程序? (...使用PCL版本從https://www.nuget.org/packages/sqlite-net-pcl/ 有人可以推薦我的任何樣品我沒有找到合適的SQLite片段在Azure上與sqlite數據庫的Azure web應用程序
這是到目前爲止我的代碼:?
public class DataService
{
private static string sqliteFilename = "myDbName.sqlite";
private static SQLiteConnection dbConnection;
public static bool Initialize()
{
Directory.CreateDirectory(HttpContext.Current.Server.MapPath(@"\App_Data\"));
string path = Path.Combine(HttpContext.Current.Server.MapPath(@"\App_Data\"), sqliteFilename);
dbConnection = new SQLiteConnection(path);
dbConnection.CreateTable<Category>();
dbConnection.CreateTable<User>();
return true;
}
}
我得到一個錯誤,這並沒有告訴我很多關於它...
爲「SQLite.SQLiteConnection」的類型初始值引發了異常