我将Linq广泛用于Umbraco以进行只读操作,即
IEnumerable<Country> countries = MyContainer.Instance.Countries.Where(c => c.NodeName == currentLocation);
我将如何开始做像
这样的事情Country c = new Country();
c.Name "australia";
Instance.persist(c); for eg.
我总是使用下面的传统形式,但我想知道人们是否使用Linq 2 Umbraco写作以及如何构建
DocumentType dt = DocumentType.GetByAlias("Textpage");
User author = User.GetUser(0);
Document doc = Document.MakeNew("My new document", dt, author, 1018);
答案 0 :(得分:0)
据我所知,Linq2Umbraco仍然是纯粹的只读 - 详见this article。我也从this thread看到情况仍然存在。
就个人而言,我仍然使用与你自己相同的方法。