pilotboba wrote:
Otis wrote:
heh You're writing one, I pressume?
Ha, not at the moment. My first and last book was on a third party Visual FoxPro framework which took a year to write all 180 pages.
cool . I thought about writing a book but I simply can't find the motivation to write that amount of text. I saw the manual is now over 300 printed pages already, but a book needs so much more... I have deep respect for everyone who can finish writing a book.
But, I have considered writting an LLBLGen book... but I'm not sure how big the market for that would be. I think doing niche books is a better choice since while your market is smaller, you also have less competition for readers. Also, not sure who would want to publish it, perhaps I could do it as an eBook.
Would be great! It still would be a niche book indeed, so don't expect the money to buy a ferrari . The thing is that computer books in general hardly sell over 10,000 copies, even if they're top of the list. I was very surprised when I hearded that, I thought the top sellers would sell over 100,000 copies easily.
Otis wrote:
However, if I have to buy a book to learn how things work in vs.net, I think we've reached the end of the direction they're going right now. At the moment, I lose a lot of time by simply fighting with VS.NET 2005, while it should be a couple of hours max to write out all the code required...
Well, you shouldn't have to read a book for the "main stream" stuff, and creating a
bindable custom collection seems pretty main stream to me.
Well, finding ITypedList info was tough a couple of years ago. Ironically, the article written by one of teh ORM.NET developers about ITypedList learned me what I had to do .
After the binding is setup, it's pretty straight forward. What's a challenge is design time databinding. For example: how do you retrieve all factory types from the current solution? At the moment I use a trick, as the EntityCollection is in a project, and thus I can grab the assembly it's in and then find the factories. But if I move the ENtityCollection to the base library, I can't anymore. Very recently I stumbled accross a new interface in .NET 2.0, ITypeDiscoveryService, which is retrievable through the Site instance, but it's as usual with this kind of stuff, hardly documented.
Also, that's why you make the "big bucks" (why people buy your stuff) because you do all the hard work and we just stand on the giants shoulders.
True . You won't hear me complaining It's just that I wished MS would put as much effort in documenting the harder parts of their API as what they put into documenting the general parts more people would use.