I work on C # with DB SQLite 3. I wrote a small program to read the necessary data from this DB. When compiling in VS 2017, the weight of the build is small, but the Dll for x64 and x86 hangs almost 4 MB!

Are there alternatives to this library with low weight?

Went through a lot of libraries, no one can read data from SQLite 3 DB. I search and try each library for 4 days, there are no answers to this question on the Internet. Thank you in advance

    1 answer 1

    Here such tried: System.Data.SQLite

    Here is the query:

    public class SqlHandler { public Int32 Id { get; set; } public String Name { get; set; } } public class Query { public IEnumerable<SqlHandler> GetHandlerName(IEnumerable<SqlHandler> sqlHandler, String name) => sqlHandler .Where(x => x .Name .Equals(name)) .Select(x => x); } 
    • I tried a lot of extra Dll with a lot of weight. I found a C # class with which you can read DB SQLite 3, but the catch is that I can’t figure out how to write a query for this class. ..... dropmefiles.com/Laks5 here is the class itself, if someone can figure it out, then unsubscribe to form a request - Bortman
    • @Bortman, I think the request will suit you!) - Yaroslav
    • if through this class: ru.stackoverflow.com/questions/847337/… you want to work with the base, then it’s better to start ORM EF)) - Yaroslav
    • I almost figured out that topic, I found the right class, it reads the necessary data from the database. But until I can get this data, the console application, when starting the build, only the cursor flashes in the console and that's it ( - Bortman
    • ORM is a good thing, but in my case not to use it - Bortman