一例由 MathType 引发 MS 公式无法使用的解决方案

今天手贱装了个 MathType 6.9 ,卸载之后发现 Office 自带的 Microsoft公式 3.0 无法使用。症状为,插入 Microsoft公式 3.0 后弹出提示

Microsoft Word 无法开始运行打开此目标所需的应用程序。
这项功能出现了错误,而且已无法再正确运行。是否现在修复这项功能?

选择“是”修复后并没有任何卵用。
后来尝试修复 Office 以及卸载重装,然而,也并没有用。
Continue reading “一例由 MathType 引发 MS 公式无法使用的解决方案”

HttpClient 是支持重入的

代码如下

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            var x = new HttpClient();
            var t1 = x.GetAsync("http://www.baidu.com");
            var t2 = x.GetAsync("http://www.zhihu.com");
            Task.WaitAll(t1, t2);
            Console.WriteLine(t1.Result.StatusCode);
            Console.WriteLine(t2.Result.StatusCode);
        }
    }
}

运行结果如下

OK
OK
请按任意键继续. . .

关于 MVC 中 EF 外键处理的一个小坑

使用 CodeFirst 进行建模。例如,已有以下实体,在MVC中是启用延迟加载的。

    public class User
    {
        public int Id { get; set; }
        public string Name { get; set; }
    }

    public class Post
    {
        public int Id { get; set; }
        public User Author { get; set; }
    }

如果直接使用下面的语法进行查询的话,如果对应的`User`没有被EF引擎加载,那么导航属性`Post.Author`会是`null`。

context.Posts.ToArray();

解决方法是,显式说明需要在返回的`Post`中加载`Author`导航属性的内容。

using System.Data.Entity;
//...
context.Posts.Include(p => p.Author).ToArray();

请参阅

Content is available under CC BY-SA 3.0 unless otherwise noted.