New Post: Code First TVF in 6.1.0-alpha1-30113
Thanks - will take a look at let you know.
View ArticleNew Post: Location of generated models and mapping in solution
What if you're using Code First and want/need to specify a location for the POCOs instead of the default Models folder?
View ArticleNew Post: Entity Framework DbContext.Set() and Pre-Generated Views
Entity framework DbContext.Set<TEntity>() does not utilizing the pregenerated views. How can we utilize the pre generated views when directly dealing with DbContext.Set<TEntity>()?
View ArticleNew Post: "MappingViewCacheFactory is already set and cannot be modified"
I have same issue in 6.02 also. I have a context factory which is responsible for creating the single instance of DbContext for Repository and also responsible for a new instance of DbContext whenever...
View ArticleNew Post: Entity Framework 6.1.0 SaveChangesAsync
I figured it out! This is NOT a bug in EF as I mentioned before! It's user! lol :) Here is the problem that was happening, when, you wait on the Task with the "Wait" method or take the result directly...
View ArticleNew Post: Making the model aware of added columns without recompilation
I'd like to know if the following scenario is supported with EF6 (or maybe with EF6.1 Public Mapping API), given the absence of replies to my question on StackOverflow and no clear answer on this 3+...
View ArticleNew Post: EF 6.1 Migrations with multiple dbcontexts with class models...
I am converting an project that used edmx to use EF6.1 code first. The project is broken down into a number of plugin libraries that each define a content type and a core library that defines an...
View ArticleNew Post: Exception: Duplicate type name within an assembly
Web Site project works ok with the DbContext. And I created windows forms application with the DbContext. It’s works ok too. I think there is a problem with Windows Azure Emulator. Can anybody give me...
View ArticleNew Post: EF 6.1 Migrations with multiple dbcontexts with class models...
It looks like the answer is to remove the content base class from the plugin content model.public partial class NewsModel : DbContext { public NewsModel() : base( "name=NewsModel" ) { } public...
View ArticleNew Post: EF 6.1 Migrations with multiple dbcontexts with class models...
I used a custom attribute class along with a custom convention to unmap entities that were not wanted in my modular plugin content type libraries (all content types are derived from a ContentBase...
View ArticleNew Post: EFTools compile errors
Hi, When I try to compile EFTools. 1st i get the following error: MSBUILD : error CA1709: Microsoft.Naming : Correct the casing of 'Db' in namespace name...
View ArticleNew Post: EFTools compile errors
Hi zgabi, The first issue with the code analysis seems similar to something that ErikEJ reported previously in which in a machine that had VS 2010 installed the wrong set of rules or even code analysis...
View ArticleNew Post: EFTools compile errors
Hi, I don't have any old VS. I have a clean install of Win8.1 Update (x64, Hungarian), SQL 2014, Office 2013, VS2013 + Other tools which is required for building EF (SqlCompact 3.5 is the only old sw)....
View ArticleNew Post: EFTools compile errors
The exception message is:"Microsoft.VisualStudio.Shell.Interop.SVsSettingsManager" When I change the following line in WizardPageStart.cs: DpiHelper.LogicalToDeviceUnits(ref imageList); to:...
View ArticleNew Post: EFTools compile errors
I also have MS VS 2010 Shell (Isolated) installed. I checked the creaton dates of the folders. It was created 5 minutes before the 1st subfolder in VS 12.0 folder. So -probably it was installed by...
View ArticleNew Post: EFTools compile errors
The VS 2010 is installed by SQL Server (Management Studio)
View ArticleNew Post: EFTools compile errors
Thanks zgabi for the additional information. I just wanted to let you know that I was able to repro the second issue and that the exception on DpiHelper.LogicalToDeviceUnits(ref imageList) was a good...
View ArticleNew Post: EFTools compile errors
ErikEJ: I have only Update 1 for VS 2013, and still have CA errors when try to compile it using "Developer Command Prompt for VS 2013", so I disabled RunCodeAnalysisForEFTools. divega: I had a "Medium"...
View ArticleNew Post: EFTools compile errors
Hi Gábor, Thanks for confirming. I have created a bug for the second issue:https://entityframework.codeplex.com/workitem/2239 Please let me know if you get any insights on the first issue. Other than...
View ArticleNew Post: How to debug entity framework?
My application has occurred a exception, so I want to debug the source code. But, when I download the sourcecode and Complie and copy to app folder, it can't running. How can I do to get the PDB file?
View Article