Reopened Issue: use codefirst how to set decimal like decimal(18,5) [674]
use codefirst how to set the model's decimal field,when the database creating can be generate like decimal(18,5)
View ArticleEdited Issue: use codefirst how to set decimal like decimal(18,5) [674]
use codefirst how to set the model's decimal field,when the database creating can be generate like decimal(18,5)
View ArticleClosed Issue: use codefirst how to set decimal like decimal(18,5) [674]
use codefirst how to set the model's decimal field,when the database creating can be generate like decimal(18,5)Comments: Questions about how to use EF are better asked on StackOverflow.com using the...
View ArticleSource code checked in, #9730024612d0
fixing some argument validation bugs introduced during CodeContracts removal CR: Divega, AVickers
View ArticleClosed Issue: We are using DebugCheck to verify arguments of public methods...
As part of removing of CodeContracts, a few isues have creeped in - i.e. using DebugCheck to validate arguments of public methods. Example would be:<br />In DbExpressionBuilder.cs<br...
View ArticleCreated Issue: Consider refactoring...
Per Andriy's suggestion: consider renaming this class and making in non-partial, either splitting into two: PublicMetadataHelper and InternalMetadataHelper or joining them into one class with...
View ArticleSource code checked in, #d09cdedb75d3
ThrowAwayCode (Consolidation of null/empty argument checking) We had a variety of different methods for checking null arguments and empty string string arguments. This change consolidates these so we...
View ArticleCreated Issue: Document default isolation levels in EF [688]
We now set databases to READ_COMMITTED_SNAPSHOT when creating them with Code First or Code First Migrations. This should be documented, together with what we do for Model First, what the defaults used...
View ArticleUpdated Wiki: Design Meeting Notes
Entity Framework Design Meeting NotesThe Entity Framework team has a weekly design meeting in which we discuss/recap design and other issues with the codebase. These are the notes from those meetings....
View ArticleCommented Issue: EF5 with dbcontext: Dragging a child entity from project...
using EF5 VS2010 or VS2012 , .NET 4.0 Or 4.5 , here are the simple steps to create the problem :1. create a model with master/child 2 tables with FKey like Order/Order Detail , generate code as...
View ArticleEdited Issue: EF5 with dbcontext: Dragging a child entity from project data...
using EF5 VS2010 or VS2012 , .NET 4.0 Or 4.5 , here are the simple steps to create the problem :<br />1. create a model with master/child 2 tables with FKey like Order/Order Detail , generate...
View ArticleNew Post: Entity's state isn't updated
The problem here is that the code is not actually using proxies. This is because the entity instances are created using the New operator before being added to the context. The New operator always...
View ArticleNew Post: Performance issues
Hi axceler,Many things can impact performance and it's to identify what can be done without more details. Can you post the test code you are using?Thanks, Arthur
View ArticleNew Post: Performance issues
Hi Arthur,Thanks for your reply. We are inserting one row at a time in a loop, the loop is in a function which is called from many threads. This is the NHibernate code while (!_isDone) {...
View ArticleNew Post: Performance issues
axceler,One thing to try is disabling DetectChanges on the context using: entities.Configuration.AutoDetectChangesEnabled = false;Beyond that, I'm not sure what else to suggest but I'll let some...
View ArticleSource code checked in, #f9311c0470dc
Merge branch 'master' of https://git01.codeplex.com/entityframework
View ArticleEdited Issue: Review core metadata APIs for public conventions [626]
The metadata unification means we need to review which core metadata APIs are public and/or mutable.
View ArticleEdited Issue: Remove InternalsVisibleTo from functional tests once EDM model...
This needs removing:<br /><br />[assembly:<br /> InternalsVisibleTo(<br /> "EntityFramework.FunctionalTests,...
View ArticleEdited Task: Make database connections in the test suite more configurable [376]
Currently the vast majority of the EF6 tests only run against SQL Express. Some others are setup to also run against SQL Compact or LocalDb. In order to check things are working as expected against...
View ArticleEdited Issue: RIAServices.EntityFramework NuGet package doesn't work with EF5...
http://nuget.org/packages/RIAServices.EntityFramework
View Article