Will dblinq be used for SQLite in checking application storage in the Windows Store?

I was trying to figure out how to get a decent LINQ to work on accessing the ORM database in the Windows Store app. All I found is SQLite and the NuGet package for sqlite-net. The latter sucks in a bit, because I don't get any .dbml-like structure that resolves relationships and provides navigation properties for a simple request (then manual union is not required).

It was interesting to me:

  • Does dblinq offer a combination with SQLite?
  • Will this password be used to verify the Windows Store?

Thanks!

Update: some links that I used in my research:

+4
source share
1 answer

I am not familiar with dblinq, but looking at the sqlite tests in the project, it seems that the library offers what you are looking for, i.e. Navigation properties for relationships between different tables.

Since dblinq is a .NET library, the use of this parameter should not lead to a failure of the storage check. However, there is another problem: you cannot use such a .NET library in a Windows Store application, only Windows Store class libraries and portable class libraries are allowed. Since the source for the library is available, you can try to compile it as a Windows Store class library, but I am afraid that some classes will be missing, because dblinq depends on what might make the port difficult.

+1
source

Source: https://habr.com/ru/post/1441753/


All Articles