New Post: EF 6, Self-Tracking Entities
@IDisposable, There hasn't yet been a discussion with the EF team about pulling Trackable Entities into the EF project. Part of the reason, I think, is that, conceptually speaking, there are pieces of...
View ArticleNew Post: How can I prevent the loading of ADO.net providers like...
Hi, I only use Firebird with EF6.1.1 but I notice that OracleClient Data Provider (system.data.oracleclient.dll) is loaded when I use EF, but I don't care about Oracle or SQL Server. I only want...
View ArticleNew Post: 3rd party DDEX provider registrarion is lost after updating a VS...
I noticed very often that the DDEX Provider of Firebird is lost and I think this happens after updating a Visual Studio Extension. Any ideas why this happens? To fix the issue I have to repair the DDEX...
View ArticleNew Post: 3rd party DDEX provider registrarion is lost after updating a VS...
After updating which VS extension?
View ArticleNew Post: 3rd party DDEX provider registrarion is lost after updating a VS...
today I updated your SQLite Toolbox Extension and this one: https://visualstudiogallery.msdn.microsoft.com/06f39a31-20ce-408c-afee-8a02b484db1c I'm not sure if there is a relationship between updating...
View ArticleNew Post: 3rd party DDEX provider registrarion is lost after updating a VS...
Hmmm... I (the SQLite Toolbox) installs a couple of DDEX providers using registry keys as per MS guidelines. I hope that this does not interfere with other DDEX providers. Could you share a link to the...
View ArticleNew Post: 3rd party DDEX provider registrarion is lost after updating a VS...
here is the link:http://sourceforge.net/projects/firebird/files/firebird-net-provider/DDEX%203.0.1/DDEXProvider-3.0.1.0.msi/download
View ArticleNew Post: How can I prevent the loading of ADO.net providers like...
I used xperf (xperf.exe -on PROC_THREAD+LOADER -stackwalk ImageLoad+ImageUnload with Option enable ngen PDB Generation: set XPERF_CreateNGenPdbs=1) and here I see that the DLL is loaded by...
View ArticleNew Post: Why is System.Web.Extensions.dll loaded when I call FirstOrDefault?
When I run FirstOrDefault in a WinForms Desktop application the System.Web.Extensions.dll gets loaded. In the callstack, which is captured by xperf...
View ArticleNew Post: Why is System.Web.Extensions.dll loaded when I call FirstOrDefault?
Do you have a reference to System.Web in your app (or in one of the libraries used by your app) ?
View ArticleNew Post: Why is System.Web.Extensions.dll loaded when I call FirstOrDefault?
@AndreZiegler This should not happen when using the EF 6.1 or above unless System.Web is already loaded. See https://entityframework.codeplex.com/workitem/1615. Can you confirm which version of EF you...
View ArticleNew Post: How can I prevent the loading of ADO.net providers like...
This is a behavior of System.Data in the .NET Framework that cannot be changed by the EF code and I am not aware of any way that it can be disabled. We talked to the team that owns System.Data a few...
View ArticleNew Post: Please add support for metadata MS_Description access from...
Please add support for MS_Description access from generator templates for tables and columns so I can include hints in the metadata to customize code generation. For example, I want to include the...
View ArticleNew Post: How can I prevent the loading of ADO.net providers like...
ok, thanks. Maybe they could add Setting which changes this but sets the Setting to disabled by Default like in this KB:http://support.microsoft.com/kb/2974335/en-us To enable the call to succeed even...
View ArticleNew Post: 3rd party DDEX provider registrarion is lost after updating a VS...
today I got an update for the Extension VSColorOutput (https://visualstudiogallery.msdn.microsoft.com/f4d9c2b5-d6d7-4543-a7a5-2d7ebabc2496?SRC=VSIDE) and now the DDEX Provider is missing again. So it...
View ArticleNew Post: Why is System.Web.Extensions.dll loaded when I call FirstOrDefault?
@ajcvickers I already use EF 6.1.1 RTM. @ErikEJ I don't have any reference to System.Web in the application. I reference EntityFramework, EntityFramework.Firebird, FirebirdSql.Data.FirebirdClient,...
View ArticleNew Post: 3rd party DDEX provider registrarion is lost after updating a VS...
Maybe discuss this with Firebird support then
View ArticleNew Post: Why is System.Web.Extensions.dll loaded when I call FirstOrDefault?
ok, I see now how the System.Web.dll gets loaded. It is done by the Firebird .Net Provider while opening a Connection in the method...
View ArticleNew Post: Why is System.Web.Extensions.dll loaded when I call FirstOrDefault?
No. But EF checks if System.Web is loaded, and if that is the case, then it loads System.Web.Extensions.dll
View ArticleNew Post: Why is System.Web.Extensions.dll loaded when I call FirstOrDefault?
ErikEJ wrote: But EF checks if System.Web is loaded, and if that is the case, then it loads System.Web.Extensions.dll why is EF doing this?
View Article