c# - What is the difference between Linq, DLinq and XLinq? -
i reading linq. please explain me how linq, dlinq , xlinq different.
linq base language extension lets query data collections using sql-like syntax. big advantage is written next code in visual studio environment concepts of sql data access have been promoted first level language constructs. means intellisense , other cool advantages of working in vs.
so said, linq basic technology. can use query virtually anything. in plain vanilla form can access data like arrays
dlinq linq sql called when in development.
linq sql way of mapping database data context , can use linq access tables in database , make changes. pretty cool technology unfortunately out of date , being "discontinued" microsoft in favour of entity framework (which linq entities).
when discontinued mean this: have said more features after asp.net 4.0 going put main development emphasis on entity framework , lots of microsoft apps going converted use entity framework.
xlinq might have guessed way of querying xml files linq.
here tutorial introducing it.
Comments
Post a Comment