Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I was wondering how to just use System.Data.SQLite.Linq to query SQLite database, without Entity Framework involved.
I had used decompiler tool to check System.Data.SQLite.Linq and System.Data.SQLite.EF6, it seems like they are the same except the namespace and EntityFramework is referenced by the latter.
I see the following description on the official website:
http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki
As far as I understand, any package that support Linq should implement the IQueryProvider and IQueryable interfaces, but I don't see this in package System.Data.SQLite.Linq.
Can someone explain it? Thanks a lot!
I have analysed their sources and cannot even understand for which purpose it was introduced and how it is related with LINQ.
If you need good SQLite LINQ support without EF, I know only one library which can do that effectively linq2db (disclaimer, I'm one of the creators)
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Are there a GUI or addon for Visual Studio to manage Entity Framework Code First migrations? For example a useful feature would be where you can select a migration from a list and perform an Update-Database with it as a TargetMigration.
(I was thinking of writing such a tool, but am unsure about how to communicate with the Nuget Package Manager Console, where the commands are inserted.)
I think there is no such a tool with features that you want, so I beleive there is no direct answer to your question. But I found these;
How about:
https://www.red-gate.com/blog/database-lifecycle-management/deploying-entity-framework-code-first-migrations-with-t-sql
Or next generation tool for os-free (command line bassed):
http://www.bricelam.net/2014/09/14/migrations-on-k.html
Interesting one:
https://flywaydb.org/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need a .NET Framework 2 compatible C# API or free library to plot some not typical curves by points. I'm not allowed to use .NET Framework 3 or higher. Are there any solutions?
ZedGraph : http://www.outsystems.com/forge/component-details/41/ZedGraph/ supports .NET 2.0. I have not used it, got curious about this and found it after searching. A word of caution though : Looking at the history of changes in sourceforge, it doesnt seem to be very actively maintained (Last update was in 2012), something that you may have to think about.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for a .Net library which would act like an abstraction layer between the application and the database. The application mostly deals with structure alterations, like creating a new table or adding a column to existing table.
I would like to have the library which deals directly with database entities like tables, schemas or columns - so not really ORM (unless some ORMs have good "utility" layer). Support for PostgreSQL and SQL Server is required (Oracle and SQLite would be "a nice to have" feature).
Any free or commercial (but royalty-free i.e. no per-server license) solutions would be much appreciated.
For the DAL, I recommend NHibernate (http://nhibernate.info/)
It is a great all-rounder:
easy to use
good abstraction
powerful features.
It gets even better with FluentNhibernate (http://www.fluentnhibernate.org/)
--
If you are looking for something more speedy and light-weight, take a look at StackOverflow's very own Dapper (https://github.com/StackExchange/dapper-dot-net)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
We are thinking of implementing Redis to optimise our webapplications retrieval of custom text descriptions and labels for pages.
We want to use StackExchange.Redis. Are there any example projects or Walkthroughs which would help to understand the project easier?
I use the test project as examples. https://github.com/StackExchange/StackExchange.Redis/tree/master/StackExchange.Redis.Tests
it is pretty good.
I found useful example of using redis StackExchange client here:
Object Persistence in C# - Part 5 - Redis Provider
the source code is on github
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I found a great walk-through for Sync Framework here:
http://msdn.microsoft.com/en-us/library/bb726010.aspx
But, it is using Sync Framework version 1. I would like to use version 2 of the Sync Framework, as it appears to be much simpler to implement. But, I can't find a single tutorial on it. I have been looking for a while, and I am usually pretty good at finding obscure stuff when I need it. Can someone point me to a good walk-through for version 2 of Sync Framework, similar to the one I reference above?
Thanks for whatever you can provide.
the tutorial you referenced above should still apply to either 2.0 or 2.1 as the SqlCeClientSyncProvider/DbServerSyncProvider (commonly referred to as offline providers) hasnt really changed that much from v1.
if you're not synchronizing devices, you might want to look at the newer SqlCeSyncProvider/SqlSyncProvider: http://msdn.microsoft.com/en-us/library/bb902853(v=SQL.110).aspx
likewise, these tutorials are actually included in the documentation that get's installed when you install Sync Framework