New Post: Entity Framework calls AssemblyName.ReferenceMatchesDefinition...
Since ReferenceMatchesDefinition() is a simple comparison, I implemented it in Mono and sent them a PR which just got accepted. This should now make it easier to run EF on Mono until the API call is...
View ArticleNew Post: EntityFunctions.DiffMilliseconds overflow because its only INT32 !!!
@montage I have created an issue to track this. https://entityframework.codeplex.com/workitem/1627 The way this function is mapped to SQL Server means that the SQL generated can only handle 32-bit...
View ArticleNew Post: Entity Framework calls AssemblyName.ReferenceMatchesDefinition...
Good news! Thanks for the update!
View ArticleNew Post: Entity Framework calls AssemblyName.ReferenceMatchesDefinition...
I've now managed to get a simple EF6 Code-First application working on Mono ;-) There's only one part left that's causing trouble, for which I've filed a bug: #1632
View ArticleNew Post: Entity Framework calls AssemblyName.ReferenceMatchesDefinition...
Thanks for the update. That is great!
View ArticleNew Post: TransactionScope and Added Entities
In addition to what Arthur said, a couple of points: Perhaps your expectation is that DbContext itself would be transactional and that changes recorded in memory would be rolled back if the transaction...
View ArticleNew Post: Is EF6 rc2 coming out anytime soon?
Is the current RC in a go-live state? Since VS2013 just got released with go live.
View ArticleNew Post: EF6 auto created Stored Procedures for CRUD
IN EntityFramework 6 documentation page, in "Concurrency Tokens" section says: (link to document) Concurrency Tokens•Update and delete stored procedures may also need to deal with concurrency: •If the...
View ArticleNew Post: EF6 auto created Stored Procedures for CRUD
Hi @ayocak, We made a late change to only include the rows affected parameter if you explicitly call the RowsAffectedParameter fluent API. E.g.modelBuilder .Entity<Order>()...
View ArticleNew Post: EF6 auto created Stored Procedures for CRUD
@AndrewPeters, thank you very much. I understand why ... If i understand correctly, it's also Optional. I think i must use RowsAffectedParameter. Otherwise (current situation), with SQL Server...
View ArticleNew Post: Is DbFunctions.DiffDays implemented?
Hi, Just checked the source code and it seems to be postponed. If ever, when? :) Thx, Lucian
View ArticleNew Post: Is DbFunctions.DiffDays implemented?
@Inaie, In what way do you mean that it "seems to be postponed"? DbFunctions.DiffDays is a stub method for use in LINQ queries that will be translated into SQL by the EF provider and then executed on...
View ArticleNew Post: EF6 auto created Stored Procedures for CRUD
Hi @ayocak, You are right that we use the return value from ExecuteNonQuery by default. The output parameter is useful if you perform any logic in your sproc that would result in the @@RowCount...
View ArticleNew Post: EF6 auto created Stored Procedures for CRUD
Thank you very much @AndrewPeters.
View ArticleNew Post: Support for ROWGUID and FILEGROUP/Partition in Migrations
Hi Michael, Thanks for the heads-up. I created #1649 to track this. Cheers, Andrew.
View ArticleNew Post: 1st query or save does not use isolation level of TransactionScope
I'm seeing an odd issue when using a TransactionScope, in which the first CRUD operation performed never seems to use the scope's isolation level. For example, assume code like this (for the record, I...
View ArticleNew Post: How can I use multiples DbContext(Mapping Error) - Module...
Hi! I have an application that we have some modules. We have for example FinancialModule and EmployeeModule. I have an Core project that I created an abstract class called DefaultDbContext that...
View ArticleNew Post: EF RC1 much slower than previous version
I've updated my project to use EF RC1, but the project startup got very slower. The application startup went from 10 seconds to more than 2 minutes. I have profiled my application, and found out that...
View ArticleNew Post: EF RC1 much slower than previous version
Hi diegomodolo, can you provide us with additional information:What version of EF did you upgrade from?What's the size of your model (number of entities, roughly how many fields in your entities,...
View ArticleNew Post: EF RC1 much slower than previous version
Hi @DavidObando. I'm upgrading from Alpha 3. My model has 335 entities, with 2050 columns and 600 FKs. It is code first. We are using TPT. Do you want me to send the performance report? Thanks.
View Article