我被要求在odoo(ex openerp)上为我的索赔模块开发一个索引类,这个类将索引声明主题字段(字符串字段)。我一点一点地推进,如果你想要我&# 39;我很乐意和你分享我的简单解决方案。但一个问题一直在唠叨我。这堂课值得吗?我读到一些文章,硬编码索引类可能比直接在所需列上创建索引更好。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;
namespace ConsoleApplication1
{
class Program
{
const string FILENAME = @"c:\temp\test.xml";
static void Main(string[] args)
{
XDocument doc = XDocument.Load(FILENAME);
var results = doc.Root.Elements()
.Where(x => x.Attribute("id").Value.EndsWith("ID1000"));
}
}
}