由于标题描述了我的导入(using DAL;
using System;
using System.Linq;
public class ReadData
{
DataModelContainer model;
public static void Main()
{
new ReadData();
Console.WriteLine("Done");
Console.ReadLine();
}
ReadData()
{
this.model = new DataModelContainer(); ;
var idRecord = this.model.IdListSet.Where(x => x.IsChecked == true).ToList(); //90.000 Table1
var record = this.model.CompRegSet.Where(z => z.HtmlRecord != null).ToList(); //60.000 Table2
Console.WriteLine("This many ID's are marked: " + idRecord.Count);
Console.WriteLine("This many have data: " + record.Count);
Console.ReadLine();
int i = 0;
foreach (var item in record)
{
foreach (var ids in idRecord)
{
if (item.Id == ids.Id)
{
i++;
ids.IsChecked = false;
this.model.SaveChanges();
}
}
}
Console.WriteLine(i);
}
}
)无法在safari或firefox中使用。
我在导入之上导入了webcomponents.min.js,但它仍无效。
以下是我的代码:
<link rel="import" href="/path/to/external/file.html">
它在Chrome中完全正常,但在Firefox或Safari
中无效任何想法
我正在使用Polymer 1.5.0和WebcomponentsJS 0.7.22
答案 0 :(得分:0)
我完全不知道我做了什么(除了更改缩小版本(现在它没有缩小版本)但是现在它可以工作了。 :|如果其他人遇到这种情况可以让其他人给予解决,谢谢