#Wor

C#操作WORD换行

 appWord.ActiveDocument.Bookmarks[bookMark].Select();     Word.SelectionwordSelection=appWord.ActiveDocument.Application.Selection...
代码星球 ·2020-04-05

C# 在word文档中复制表格并粘帖到下一页中

C#在word文档中复制表格并粘帖到下一页中           objectoMissing=System.Reflection.Missing.Value;    &...

比较全的 C# 操作 Word的代码

usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingMicrosoft.Office.Interop.Word;usingSystem.IO;usingSystem.Web;usingSystem.Data;usingSystem.Refl...
代码星球 ·2020-04-05

C#采用OpenXml给word里面插入图片

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingDocumentFormat.OpenXml;usingDocumentFormat.OpenXm...

c# 操作word demo

///<summary>///新创建word///</summary>///<paramname="fileSaveDirectory">word保存路径(可默认)</param>///<paramname="fileName">word文件名称(可默认)&l...
代码星球 ·2020-04-05

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

SpringJDBC :jdbcTemplate在连接是出现 org/springframeworkbc/core/JdbcTemplate : Unsupported major.minor version 52.0 异常解决

原因是这个在jdk9版本才能使用,需更新jdk版本。更新jdk9之后在idear的配置:第一步:File---->ProjectStructure---->Project第二步: 第三步: 最后Apply即可。 ...
首页上一页...105106107108109...下一页尾页