New Post: Exclude columns in the Select
I'm using Entity Framework 6.0.2 In all my tables have the following columns to the log: user_create date_create user_modify date_modify These columns are updated by the method override SaveChanges ();...
View ArticleNew Post: Testing with async queries doesn't work
@ajcvickers Thanks! Still couldn't get it working but wow, that article misses a lot of things
View ArticleNew Post: using system; at code-migrations
Just a small request, is it possible to remove the using "System" from the code-migrations template? The using is not used in the migration and will generate a re-sharper error :)
View ArticleNew Post: SQL Server Compact 3.5 provider for EF6
Maybe I should commit my changes to my fork (SqlCe35Revival), and you can have a look to better undertand the scope of changes?
View ArticleNew Post: SQL Server Compact 3.5 provider for EF6
Testing: I would like to modify at least something like the SimpleScenariosForSqlCe.cs tests to run against the 3.5 provider, but referencing both providers in the FunctionalTests project will not...
View ArticleNew Post: Multiple contexts per db and automatic migration
Hi Andrew, thanks for your hints. I could get rid of the derived migration configs by setting the correct assembly and namespace. This way the initial migrations for each context are found and applied...
View ArticleNew Post: Trouble with slowness using EF6 many-to-many
Nothing? It's still really bugging me that I had to do this when I don't really feel like I should've had to!
View ArticleNew Post: EF6 support for ASP.NET WebForms EntityDataSource
we need it! is possible know the date of this update? this is another strange thing of microsoft, release new version of EF without update components that use it :( we are working with this...
View ArticleNew Post: Trouble with slowness using EF6 many-to-many
Thanks for reporting this. Could you provide a full repro to facilitate the investigation? Thanks, Diego
View ArticleNew Post: SQL Server Compact 3.5 provider for EF6
@ErikEJ Can you elaborate on what you mean by "referencing both providers in the FunctionalTests project will not work"? Is this a build issue or any issue with using both providers in an EF app? The...
View ArticleNew Post: Testing with async queries doesn't work
Thanks! Looks like I got it to work. I had to copy those classes, change some namespaces and tweak some reflection related stuff - but my unit tests are passing. I'll reply later if I find it's not...
View ArticleNew Post: SQL Server Compact 3.5 provider for EF6
Arthur, Both providers have the same namespace, which causes build errors due to class name duplication, if both providers are referenced in the same project, ie FunctionalTests. In addition, the...
View ArticleNew Post: SQL Server Compact 3.5 provider for EF6
Arthur/Diego, I have pushed 2 commits to my fork here: https://entityframework.codeplex.com/SourceControl/network/forks/ErikEJ/SqlCe35Revival Would be grateful if you could have a look, and I am sure...
View ArticleNew Post: Trouble with slowness using EF6 many-to-many
Hello Tim, Just an update on this: we tried replicating the scenario you described in SO but we couldn't get anywhere near the results you reported. A repro would really help. Thanks, Diego
View ArticleNew Post: CompatibleWithModel was working with EF5 not anymore with EF6
Hi EF team, I have a weird issue with EF6 when I try to create a database with this code and then checking the compatibility throws. Creating the database works fine, MigrationHistory table exists//...
View ArticleNew Post: Why is EF6 dll 5 times bigger than EF5?
How comes that the new entity framework is 5 times bigger than the previous version? EF 5.0 was 1,1 MB big and EF 6.0.1 is suddenly 4,9 MB big plus an aditional 0,6 MB for EntityFramework.SqlServer.dll...
View ArticleNew Post: Nullable columns with database default values
Hi folks, I have a table in the database with a default value definition: CREATE TABLE [dbo].[TOBIAS] ( [PERSNR] [int] NULL, [RECORDID] uniqueidentifier NOT NULL ) ALTER TABLE [dbo].[TOBIAS] ADD...
View ArticleNew Post: Why is EF6 dll 5 times bigger than EF5?
Hello Staeff, We did not forget to activate any compiler optimization flag as far as I know :) The main reason for the increased size of EntityFramework.dll is that in EF6 we copied all the Entity...
View Article