上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 17 下一页
摘要: ffmpeg是一个开源的,用来做视频转换,抓图的程序。在Windows中是一个编译成exe的程序,可通过Progress调用。在Cmd下查看帮助:-h -- print basic options-help topic 查看某一主题相关帮助(如ffmpeg -formats)-y overwrite output files(全局选项,影响整个程序,而非单个文件:)-f fmt force format(具体有哪些格式通过ffmpeg -formats查看, 示例 -f image2)-i filename input file name-ss time_off set the start t 阅读全文
posted @ 2012-12-24 16:14 Season2009 阅读(386) 评论(0) 推荐(0) 编辑
摘要: $.fn.togglepanels = function () { return this.each(function () { $(this).addClass("ui-accordion ui-accordion-icons ui-widget ui-helper-reset") .find("h3") .addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-top ui-corner-bottom") .hover(function () 阅读全文
posted @ 2012-12-24 15:45 Season2009 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 在.cshtml面面中@Html.TextBoxFor(model => model.Name)上面语句提示如下错误, 并且model属性不能智能提示The type arguments for method 'System.Web.Mvc.Html.InputExtensions.TextBoxFor<TModel,TProperty>(System.Web.Mvc.HtmlHelper<TModel>, System.Linq.Expressions.Expression<System.Func<TModel,TProperty>&g 阅读全文
posted @ 2012-12-20 12:14 Season2009 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 主健如果Model中包含如下字段(不区分大小写,按优先级列出),则会当做主健'Id'[type name]Id 参考:http://msdn.microsoft.com/en-us/library/system.data.entity.modelconfiguration.conventions.idkeydiscoveryconvention(v=vs.103).aspx外健采用如下方法定义外健View Code public class Department{ // Primary key public int DepartmentID { get; set; } pu.. 阅读全文
posted @ 2012-12-20 10:59 Season2009 阅读(431) 评论(0) 推荐(0) 编辑
摘要: 问题现象在开发环境中(Win7 + MVC4 + EF5)系统能正常运行。发布到Server2003后,访问系统报如下错误:Method not found: 'Void System.Data.Objects.ObjectContextOptions.set_UseConsistentNullReferenceBehavior(Boolean)'.原因分析在开发环境中(Win7)已安装.net framewrok4.5, EF5使用的是与framework 4.5配套的版本。但server2003不支持framework4.5解决办法1,把项目的Target framewor 阅读全文
posted @ 2012-12-20 09:19 Season2009 阅读(312) 评论(0) 推荐(0) 编辑
摘要: Global.asax protected void Application_Start() { AreaRegistration.RegisterAllAreas(); FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); RouteConfig.RegisterRoutes(RouteTable.Routes); BundleConfig.RegisterBundles(BundleTable.Bundles);... 阅读全文
posted @ 2012-12-19 10:58 Season2009 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 在Razor中注册全局命名空间的位置由web.config移到了~/Views/web.config中,添加如下节点: <system.web.webPages.razor> <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> <pages pageBaseType="System.Web.Mvc.We 阅读全文
posted @ 2012-12-03 11:04 Season2009 阅读(221) 评论(0) 推荐(0) 编辑
摘要: System.Data.Entity.DbSet代表一个实体集,该实体集用来完成创建,读取,修改和删除操作。对应数据库的表。Add方法把一个实体添加到Context中,把实体标识为Added状态。保存时,所有标识为Added状态的实体插入到数据库中。保存后,实体状态变成Unchanged。参考资料:DbSet ClassSystem.Data.Entity.DbContext代表Unit-Of-Work和Repository模式的组合,允许你查询数据库,把changes汇集然后以作为一个整个写入到数据库。Set方法public DbSet<TEntity> Set<TEnti 阅读全文
posted @ 2012-12-03 10:32 Season2009 阅读(876) 评论(0) 推荐(1) 编辑
摘要: 1,创建新的实例User user = new User();2,隐藏父类函数public new IDbSet<TEntity> Set<TEntity>() where TEntity : BaseEntity{} 阅读全文
posted @ 2012-12-03 09:58 Season2009 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 1,修改连接串<add name="NorthwindConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Northwind.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/>改为<add name="NorthwindConnectionString 阅读全文
posted @ 2012-11-28 10:39 Season2009 阅读(295) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 17 下一页