Commented Issue: [NonVS] EF5 with dbcontext: Dragging a child entity from...
Action: Update content to show how to do this with EF Designer (walkthrough is Code First only)using EF5 VS2010 or VS2012 , .NET 4.0 Or 4.5 , here are the simple steps to create the problem :1. create...
View ArticleSource code checked in, #1eac49e756e93f8a824b00a984d29f58e1144fd9
No constitutional right for binding flags... (Fix for 1634: Remove use of Type.GetMethod) Replaced Type.GetMethod with Type.GetMethodInfo extension methods that use the modern API in .NET 4.5/.NET for...
View ArticleEdited Task: Remove use of Type.GetMethod [1634]
Reflection has changed in .NET for Windows Store Apps. Type.GetMethod no longer exists and should be replaced with Type.GetTypeInfo() and then other calls as appropriate.
View ArticleCommented Task: Remove use of Type.GetMethod [1634]
Reflection has changed in .NET for Windows Store Apps. Type.GetMethod no longer exists and should be replaced with Type.GetTypeInfo() and then other calls as appropriate.Comments: Fixed in 1eac49e756e9...
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 ArticleEdited Issue: [RTM] Designer: Setup should drop EULAs on disk (runtime and...
Our tooling MSI should drop the runtime and tooling EULA in the VS licenses folder.
View ArticleCreated Issue: Documentation :: misleading method description for...
It says:Begins configuration of a lightweight convention that applies to all entities in the model.We should also mention that it applies to complex types.
View ArticleSource code checked in, #3ec292560a49efc0dc43a592c72f7bbd0ca0bf10
Fix nightly package versions Currently, the build number is not making its way into the nightly package version. This is due to some refactoring that was done in the nightly build repository but never...
View ArticleCreated Unassigned: Conventions :: specifying parameter name for stored...
Consider the following code:``` public class Foo{ public int Id { get; set; } public string Name { get; set; } public DateTime DateOfBirth { get; set; }} public class MyContext : DbContext{ public...
View ArticleEdited Issue: Conventions :: specifying parameter name for stored procedure...
Consider the following code:``` public class Foo{ public int Id { get; set; } public string Name { get; set; } public DateTime DateOfBirth { get; set; }} public class MyContext : DbContext{ public...
View ArticleEdited Unassigned: Performance Regression on DbSet.SaveChanges [1626]
After looking at the performance of a sample application that simply adds entities to an empty database and comparing performance using EF5 and EF6, it appears that DbSet.Add takes significantly...
View ArticleCommented Issue: Conventions :: specifying parameter name for stored...
Consider the following code:``` public class Foo{ public int Id { get; set; } public string Name { get; set; } public DateTime DateOfBirth { get; set; }} public class MyContext : DbContext{ public...
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 ArticleEdited Issue: Migration resource file misnamed if migration is not first...
Twice now I have been very confused for a when my migration stopped working. The second time I finally traced it back to being a problem with having the class that inherits from DbMigration not be the...
View ArticleCommented Issue: [NonVS] Async walkthrough implies initialization happens...
The async walkthrough (http://msdn.microsoft.com/en-us/data/jj819165) states "Finally, we can apply our model to our database by simply pressing F5." However at this point in the walkthrough there is...
View ArticleEdited Issue: [NonVS] Async walkthrough implies initialization happens even...
The async walkthrough (http://msdn.microsoft.com/en-us/data/jj819165) states "Finally, we can apply our model to our database by simply pressing F5." However at this point in the walkthrough there is...
View ArticleCommented Issue: [NonVS] Async walkthrough implies initialization happens...
The async walkthrough (http://msdn.microsoft.com/en-us/data/jj819165) states "Finally, we can apply our model to our database by simply pressing F5." However at this point in the walkthrough there is...
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 ArticleSource code checked in, #fc1c0bc2225be9777b9fc1b5bf4bccfb2e3dbb93
Added basic functionality to MappingItem (Annotations, ReadOnly). Added MappingItem as base class to a few more mapping classes. Removed ILegacyMappingItem and replaced with dictionary that maps types...
View Article