Who could imagine?
Four years ago when I wrote my first book, I never expected to get so excited and keep writing pages and pages… 😀
Who would imagine?
Here is what imagination looks like in this case 😆 : Amazon
my small web corner
Published · Updated
Four years ago when I wrote my first book, I never expected to get so excited and keep writing pages and pages… 😀
Who would imagine?
Here is what imagination looks like in this case 😆 : Amazon
This site uses Akismet to reduce spam. Learn how your comment data is processed.
Well done you!
Thanks a lot Nick.
Wow! Well done, John!
Thanks Margott.
Hope you are well!
Well done, keep this great work,
Today I bought the ORM book today from amazon with other 2 books, I forgot about the MVVM one, I will try to add it on my next order.
Hi,
Thanks a lot.
I hope you enjoy the book. Please let me know what you think of it.
Regards,
John
Dear Ioannis,
Hope you are well.
Congratulations from my wife and I on your publications.
How can we obtain copies of your works?
Hi,
Many thanks to you and your wife.
You can get them from Amazon or from Apress’ web site.
I have added a link in the post.
Thanks again
Hello John
I’ve just finished the ORM Book. Very good, I’d recommend it to anyone learning Aurelius- I’ll put a review on the UK Amazon site
Couple of points:
I noticed that that all of the project source had this duplicate line
Application.CreateForm(TSQLiteConnection, SQLiteConnection);
Application.CreateForm(TSQLiteConnection, SQLiteConnection);
Is that intentional? I don’t recall seeing an explanation it it is.
Also, when considering Aurelius classes, Join Column maps to the foreign key concept in the database. Does the Many Valued Association have a corresponding concept is the database, or is it purely something on the ORM side? For instance if I create tables from the classes, I don’t notice anything in the physical database relating to the MVA.
Thanks again for the book and helping me get to grips with Aurelius
Trevor
Hi Trevor,
Thanks for the kind words; and, definitely, thank you for pointing out to me the duplicate lines. I never noticed them and, frankly, I would expect to get a compiler error (or warning at least). I have cleaned up the code on github now.
Regarding your query about ManyValuedAssociation, it implements the concept of one-to-many association. JoinColumn does the same for the opposite direction (many-to-one). Therefore, the database concept they both implement is the foreign keys and they behave as Join tables.
Why do we need both? Because Aurelius does not scan the foreign keys in the database. Instead, we need to pass all the database structure in code.
Look for the foreign keys. Aurelius does create them