Otis wrote:
The new search engine is now live. It indexes in real-time. Please inform us with any issues you run into: support AT llblgen.com. Searches should now be really fast (1 second or so).
Frans,
Maybe this is just me... Either I have a very bad memory or the way my memory works is wierd but I'm finding some difficulties with the new search... I tend not to remember which english words were used in the context of a post I have previously read.
I was looking for "Saving entities with a Many to Many (m:n)" relationship yesterday, but no matter what combination of search words I used, I couldn't bring up anything relevant. "m:n" is seems to be ignored. "to" is ignored and hence "Many to Many" results in just "many". "Save" is ignored etc... Using quotes to indicate an exact phrase also doesn't help...
Today I was looking for an example of Stored Procedure that you posted (which I hope you can point me to ). I remembered that it was a fine example of how stored procedures should be written and wanted to use it as a reference. I think it was something to do with this a procedure that was used in this forum and was dated back a few years ago... The only thing I could clearly rememeber about it was that it must have contained "@@ERROR". But "@@ERROR" returns nothing.
The other thing I'm always searching for is code snippets... There are some great little snippets on the forum about how to get LLBLGen to behave in a certain way... I search for stuff is to use code keywords. This is an example of something I was trying to find again...
FolderLinkEntity folderLinkEntity = new FolderLinkEntity();
// Trick to get over problem updating PKs in LLBLGEN
folderLinkEntity.Fields["ChildFolderID"].ForcedCurrentValueWrite(req.FolderID, req.FolderID);
folderLinkEntity.Fields["ChildFolderID"].IsChanged = true;
folderLinkEntity.Fields["ParentFolderID"].ForcedCurrentValueWrite(req.NewParentFolderID, req.OldParentFolderID);
folderLinkEntity.Fields["ParentFolderID"].IsChanged = true;
I remembered it contained "ForcedCurrentValueWrite", but the search doesn't include code sections...
While I really appreciate the speed of the new search, I am finding more and more that I need to revert to using Outlook to search the RSS feeds that I pull once a day from the forum...
Again, maybe this is just me , but if there is anything you could do to make the search a little more "inclusive" it would be appreciated.