You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i am using VS 2022. So on "Debug" the NUGET work fine.
But if i start in Relesas, the Nuget didn't create DB correct.
I Build a Windows Universal App for the Store
My Code:
var db1 = new SQLiteAsyncConnection(DB_PATH);
var TW1 = await db1.CreateTableAsync<Books>();
await db1.CloseAsync();
Claas Books:
public class Books
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
public string Category { get; set; }
public string SubCategory { get; set; }
public string Label { get; set; }
public string Content { get; set; }
public string CreationDate { get; set; }
}
The text was updated successfully, but these errors were encountered:
Hello,
i am using VS 2022. So on "Debug" the NUGET work fine.
But if i start in Relesas, the Nuget didn't create DB correct.
I Build a Windows Universal App for the Store
My Code:
Claas Books:
The text was updated successfully, but these errors were encountered: