LINQ - JLINQ - Quaere

أرسل من قبل Renwar في السبت, 2008/07/26 - 8:13am.
عضو فعال
صورة Renwar

تاريخ التسجيل: 2005-02-24
مشاركات: 882

الجامعة: دمشق
الكلية: الهندسة المعلوماتية
المرحلة: السنة الخامسة
الاختصاص: هندسة برمجيات

This was an annoying thing 4 me 2 read : spoofy Mr. Green
so... i did some search reaching these articles: Quaere
also this man's point of view
previous one contains a link to : JLINQ
which is focusing on : IBM's new paradigm for writing Java database applications
========
so : i just want to hear some of ur thoughts abt .Net LINQ. what develope can this thing bring?
how come this will threat Java?
do u really need sth like LINQ in ur code?
JDK 7.0 is about to come on 2010 which probably is going to contain sth close to cloning LINQ
will this be 2oo late?
how abt DSL static thing they R talking abt?

 
دخول أو تسجيل لإرسال التعليقات | قراءة: 160

خيارات عرض التعليقات

اختر طريقتك المفضلة لعرض التعليقات و اضغط "حفظ الإعدادات" لتفعيل تغييراتك.
السبت, 2008/07/26 - 6:02pm
صورة bayrn

تاريخ التسجيل: 2008-03-05
مشاركات: 801

الجامعة: الافتراضية
الكلية: تكنولوجيا المعلومات
المرحلة: السنة الرابعة
الاختصاص: غير ذلك

I read something about LINQ , there is one property to turn me :

 we can by LINQ in .NET to query about objects and their Values wich Contained in the code , in addition we can Query about Variables and their values we can to query about many things , but i  didnt tyr it
But Why Java

 

قرأتُ مجدَكِ في قلبي و في الكُتُـبِ         شَـآمُ ، ما المجدُ؟ أنتِ المجدُ لم يَغِبِ

 
دخول أو تسجيل لإرسال التعليقات
السبت, 2008/07/26 - 8:46pm
صورة eng.samar

تاريخ التسجيل: 2006-05-22
مشاركات: 730

الجامعة: دمشق
الكلية: الهندسة المعلوماتية
المرحلة: السنة الخامسة
الاختصاص: هندسة برمجيات

just yesterday i believed this spoof

and i only know this information about linq in .net

كتب bayrn:

I read something about LINQ , there is one property to turn me :

we can by LINQ in .NET to query about objects and their Values wich Contained in the code ,

 

_________________________________________

it's cool i think java will do it

 

why not

 

 
دخول أو تسجيل لإرسال التعليقات
السبت, 2008/07/26 - 10:11pm
عضو فعال
صورة Renwar

تاريخ التسجيل: 2005-02-24
مشاركات: 882

الجامعة: دمشق
الكلية: الهندسة المعلوماتية
المرحلة: السنة الخامسة
الاختصاص: هندسة برمجيات

كتب eng.samar:
just yesterday i believed this spoof
Yes, i have seen u believing it Mr. Green
Tornado couldn't stop his nerves from spreading annoying stuff for Java fans Very Happy
----
what iam looking for is sth to define the GREAT benefit MS is talking about through using LINQ
maybe most of us still not into the subject deeply, but iam worried for my beloved Java Sad
i need to have a clue about how far this step is leaving Java behind, if it is

 
دخول أو تسجيل لإرسال التعليقات
الأحد, 2008/07/27 - 5:08am
مدير
صورة foaad

تاريخ التسجيل: 2005-07-15
مشاركات: 3149

الجامعة: دمشق
الكلية: الهندسة المعلوماتية
المرحلة: السنة الخامسة
الاختصاص: هندسة برمجيات

كتب Renwar:
This was an annoying thing 4 me 2 read : spoofy Mr. Green
Nice name though, Java JUNQ Laughing
كتب Renwar:
so : i just want to hear some of ur thoughts abt .Net LINQ. what develope can this thing bring?
It's one of those things that make you think "Why didn't anyone think of this before?"
Of course I'm not talking about LINQ to objects (Querying memory arrays) which is not useful (although it will be when PLINQ (Parallel LINQ) is released)
I'm talking about LINQ to SQL (and the like), but then you realize, developers actually have been implementing and using similar techniques for years (even at the small company that I work for we've implemented a tool to generate wrapper classes for database objects) but all of these techniques weren't very successful because they weren't part of the language itself.
كتب Renwar:
do u really need sth like LINQ in ur code?
Not everybody need it but if you do access data in a database then you need it (or a similar technique)
hard coding SQL statements in your code (as strings) is just not good practice, you shouldn't even hard code column names or stored procedure names, actually you shouldn't hard code anything!
LINQ provides you with an easy and useful tool to eliminate the need of hard coding SQL statements, it has other useful qualities too, but IMHO the most important thing is that it greatly increase the quality of the code (more maintainable and less prone to errors).

 
دخول أو تسجيل لإرسال التعليقات