Does ASP.NET Core support SQL Server CE now? - asp.net-core

If supported, which package should I install in order to use SQL Server CE?
Thanks.
Package Microsoft.SqlServer.Compact 4.0.8876.1 is not compatible with netcoreapp1.0 (.NETCoreApp,Version=v1.0).
Package EntityFrameworkCore.SqlServerCompact40 1.0.0.3 is not compatible with netcoreapp1.0 (.NETCoreApp,Version=v1.0).

EF Core will handle it.
Use the SQLite / SQL Server Compact Toolbox extension for Visual Studio 2017 by ErikEJ.
"EF Core, released simultaneously with .NET Core, is a lightweight and extensible version of Entity Framework that works on both .NET Core and .NET Framework. It has support for Microsoft SQL Server, SQLite, PostgreSQL, MySQL, Microsoft SQL Server Compact Edition, and IBM DB2 with more to come, such as Oracle." (https://blogs.msdn.microsoft.com/dotnet/2016/11/09/net-core-data-access)

Related

Upgrade .net framework 4.5.2 on SQL Server 2008 R2

I have a database server on which SQL Server 2008 R2 is installed with .net framework 2.0,3.0 and 3.5.
Can i install .net framework 4.5.2 on this machine without any issue as its a production server.

Mismatch .net framework between local (Windows 8.1) and server (Windows server 2003) generating sql exception

I have asp .net 4 application running in development (local) on windows 8.1 & Visual Studio 2013, installed .net framework version 4.5, IIS Express
The production server is setup with windows server 2003 and installed .net framework version 4.0, IIS 6
The web application Target Framework is .net framework 4
Lately i have encountered SqlException (0x80131904): "Some part of your SQL statement is nested too deeply".
This exception occurs only in production (on windows server 2003) where the runtime version is 4.0.30319.1022
In development (local on windows 8.1) where the runtime version is 4.0.30319.34011 this exception does not occur.
The SQL generated by LINQ in the server is different than the SQL generated in the local.
After a little research i found that different version of .net is causing this behavior.
As far as i know, the difference between the two versions is:
version 4.0.30319.1022 is built on .net framework 4.0 and version 4.0.30319.34011 is built on .net framework 4.5
Since .net framework 4.5 is not supported on windows server 2003, I would require targeting the older version on my dev machine.
Is there a way to target my dev instance to use the exact same .NET framework version or entities dll that is used in order to receive the same behavior in both dev & prod instances?
Thanks in advance,
Shai

Can i use SQL Server Compact Edition 3.5 without Visual Studio

Can i use SQL Server Compact Edition 3.5 without Visual Studio. I install SQL Server Compact Edition but can't find where i create database.
Please guide me i have to install sql server on client computer for runing my project without visual studio.
Here (link), you have a huge list of tools (commercial and free) for SQL CE.

How to make a setup for Visual Studio 2012 project which uses SQL Server CE 4.0 and .net framework 4.0 or 3.5 sp1 with GAC registering?

I have created a Windows forms application project in VS 2012 which uses SQL Server CE 4.0 (Compact Edition) and .NET framework 3.5 sp1 and in future 4.0!
Now I don't know how to create a setup! Because no setup project is supported in VS 2012 except Installshield LE which doesn't support SQL Server CE 4.0 prerequisite!
Also I need to register some DLLs (stimulsoft reporting) into GAC!
I know that if I want to be sure about GAC, I must build a MSI, but I don't know how to include SQL Server CE 4.0!
I have searched all over the Docs in the earth!! please help me :(

Path Location:Oracle.Driver (Oracle.DataAccess.dll) for Oracle 11g Standard Edition Release 2

I have installed Oracle 11g Standard Edition Release 2. I am working with nhibernate 2.2. I already spent lots of time but I could not find the location of Oracle Driver dll file (Oracle.DataAccess.dll) in the installed file.Please Help me. Thanks in advance.
Satadip
Since 11.2 Oracle Data Provider for .NET ships with two sets of binaries
The Oracle.DataAccess.dll assembly is installed to the following locations:
.NET Framework 2.0:
ORACLE_BASE\ORACLE_HOME\odp.net\bin\2.x directory
.NET Framework 4:
ORACLE_BASE\ORACLE_HOME\odp.net\bin\4 directory
From the Oracle Data Provider for .NET Developer's Guide 11g Release 2 (11.2.0.3)
Obviously for the files to be there you must have included the Oracle Data Provider for .NET as part of your Oracle Installation or downloaded Oracle Data Access Components (ODAC) from OTN instead.