#entity

Entity FrameWork 实体属性为decimal时默认只保存2位小数

问题描述:当采用EF的DbContext保存decimal类型数据到数据库,默认只会保存小数点后的前2位小数,其余均置0;例如保存101.182352152322,实际存到数据库里的数据为101.180000000000;解决方法:在创建项目DbContext时,重写DbContext.OnModelCreating(...

Entity Framework 出现 "此 ObjectContext 实例已释放,不可再用于需要连接的操作" 的错误

Entity的导航属性在View中使用,但是该Entity所在的Context已经在Controller中通过using释放掉;但是Entity又具有DeferredQueryEvaluation性质,因此,导航属性对象没有被加载,从而出现上述错误。 认真学习msdn教程 解决方法一:Howto:E...

Entity Framework 使用注意:Where查询条件中用到的关联实体不需要Include

http://www.cnblogs.com/dudu/archive/2012/04/13/entity_framework_include_where.html在EntityFramework中,如果实体A关联了实体B,你想在加载实体A的同时加载实体B。通常做法是在LINQ查询中使用Include()。但是,如果你...

Entity Framework Code First ---EF Power Tool 和MySql一起使用遇到的问题

关于如何使用EFPowerTool的介绍请看http://www.cnblogs.com/LingzhiSun/archive/2011/05/24/EFPowerTool_1.html,这里不再啰嗦。MySql里有个默认的范例数据库world,里面有三个表,下载EntityFrameworkPowerTools安装包...

Entity Framework 6新功能Logging/Store Procedure

摘要  在EntityFramework6中有两个新的功能,DBLoggin和StoredProcedure的映射  EntityFramework6已经从Beta版本来到了RC1版本,我们可以看到升级之后EF6有两个亮眼的新功能,DBLogging和CRUD的StoredPro...

MiniProfiler 兼容 Entity Framework 6

一直以来都是在用MiniProfiler配合ASP.NETMVC做请求的监控。在某项目升级EntityFramework6之后,在执行查询时报错误:--------------无法将类型为“StackExchange.Profiling.Data.EFProfiledDbConnection”的...

Entity Framework Power Tools Beta 3

http://visualstudiogallery.msdn.microsoft.com/72a60b14-1581-4b9b-89f2-846072eff19d/ PM>Install-PackageEntityFramework-Pre...

使用Entity Framework时要注意的一些性能问题

自从我用了EF,每次都很关心是否有潜在的性能问题。所以每次我写LINQ查询,都会使用SQLProfiler看一下实际生成的SQL语句,以便发现潜在的性能问题。也强烈建议大家这么去做,以免日后软件大了出了问题很难查。一、只选择某列或某些列有些时候,在C#里写LINQ虽然看着舒服,但性能不一定好,所以有必要做一些调整。比如...

Is it possible to run native sql with entity framework?

For.NETFrameworkversion4andabove:useObjectContext.ExecuteStoreCommand()ifyourqueryreturnsnoresults,anduseObjectContext.ExecuteStoreQueryifyourqueryreturnsresult...
代码星球 ·2020-04-05

表达式拼接Expression<Func<IEntityMapper, bool>> predicate

///<summary>///重写以筛选出当前上下文的实体映射信息///</summary>protectedoverrideIEnumerable<IEntityMapper>EntityMappersFilter(IEnumerable<IEntityMapper>e...

从Microsoft.AspNet.Identity看微软推荐的一种MVC的分层架构

Microsoft.AspNet.Identity是微软在MVC5.0中新引入的一种membership框架,和之前ASP.NET传统的membership以及WebPage所带来的SimpleMembership(在MVC4中使用)都有所不同。Microsoft.AspNet.Identity是符合微软开放Owin标...

IdentityDbContext

Movethe ApplicationUser definitiontoyourDAL.Inherityour MyDbContext from IdentityDbContext<ApplicationUser> or Identity...
代码星球 ·2020-04-04

EntityFramework的多种记录日志方式,记录错误并分析执行时间过长原因(系列4)

EntityFramework延伸系列目录今天我们来聊聊EF的日志记录.一个好的数据库操作记录不仅仅可以帮你记录用户的操作,更应该可以帮助你获得效率低下的语句来帮你提高运行效率废话不多说,我们开始 环境和相关技术本文采用的环境与技术系统:WIN7数据库:SQLServer2008相关技术:MVC5 ...

Configuring Autofac to work with the ASP.NET Identity Framework in MVC 5

https://developingsoftware.com/configuring-autofac-to-work-with-the-aspnet-identity-framework-in-mvc-5ByTonyMackay  02February2015Thispostwillshowyouh...

性能工具MiniProfiler在Asp.Net WebForm跟踪EntityFramework

http://www.xuebuyuan.com/356638.html选择MiniProfiler.EF默认会把MiniProfiler安装上,笔者程序是Asp.NetWebForm不需要安装MiniProfiler.MVC3 2:在Global.asax中添加下面代码:voidApplication_Be...
首页上一页...1011121314下一页尾页