PC Review


Reply
Thread Tools Rate Thread

Data Access Architecture for Silverlight2

 
 
Alex. O. Koranteng
Guest
Posts: n/a
 
      8th Jul 2009
I am learning Silverlight2 through the resources on MSDN like the Jesse
Liberty and Mike Taulty's Video series. I have purchased the APRESS book
Silverlight2- From Novice to Professional. I am confused about what the
appropriate data access technology to pick up and have started playing with
WCF on the other end. However, I am confused on what the appropriated Data
Access technology to leverage with Silverlight and to add on to my skills
coming from traditional ADO.Net and some LINQ. Also what resources do I have
to look at. Will appreciate any advise.

Thanks


 
Reply With Quote
 
 
 
 
Colbert Zhou [MSFT]
Guest
Posts: n/a
 
      8th Jul 2009
Hi Alex,

Currently, Silverlight does not support to do Data Access directly from the
Silverlight application itself because of some security issues. But I
believe the Data Access API will be improved in the future release
versions.

Currently, the only way is using a WCF or WebService to wrap a Data Access
Layer. It does not matter how we do the Data Access from the WCF or
WebSerivce wrapper. We can do it via the tranditional ADO.NET , LINQ to SQL
or Entity Framework. As long as we retrieve the Data in the WCF or
WebService layer, we can consum the WCF or WebService to get the data.

We can see some discussion and detailed walkthrough on the web,
http://blogs.msdn.com/brada/archive/...-centric-appli
cation-with-silverlight-2.aspx
http://silverlight.net/forums/t/16915.aspx
http://silverlight.net/forums/p/16733/55609.aspx#55609


Best regards,
Colbert Zhou
Microsoft Newsgroup Support Team

 
Reply With Quote
 
Cor Ligthert[MVP]
Guest
Posts: n/a
 
      8th Jul 2009
Alex

Very nice sample makes direct your question clear (although the same
question this sample did it for me)

http://silverlight.net/learn/tutorials/sqldatagrid.aspx

Cor

 
Reply With Quote
 
Alex. O. Koranteng
Guest
Posts: n/a
 
      8th Jul 2009
Colbert,

Thanks for the clarification. Now I see the need to sharpen my WCF skills. I
have started going through the basics using MSDN, but the material is kind of
confusing since I did not come from the traditional web services model. Would
you know of any good basic links and samples to get me started


"Colbert Zhou [MSFT]" wrote:

> Hi Alex,
>
> Currently, Silverlight does not support to do Data Access directly from the
> Silverlight application itself because of some security issues. But I
> believe the Data Access API will be improved in the future release
> versions.
>
> Currently, the only way is using a WCF or WebService to wrap a Data Access
> Layer. It does not matter how we do the Data Access from the WCF or
> WebSerivce wrapper. We can do it via the tranditional ADO.NET , LINQ to SQL
> or Entity Framework. As long as we retrieve the Data in the WCF or
> WebService layer, we can consum the WCF or WebService to get the data.
>
> We can see some discussion and detailed walkthrough on the web,
> http://blogs.msdn.com/brada/archive/...-centric-appli
> cation-with-silverlight-2.aspx
> http://silverlight.net/forums/t/16915.aspx
> http://silverlight.net/forums/p/16733/55609.aspx#55609
>
>
> Best regards,
> Colbert Zhou
> Microsoft Newsgroup Support Team
>
>

 
Reply With Quote
 
Alex. O. Koranteng
Guest
Posts: n/a
 
      8th Jul 2009
Cor,

Thanks for the link. The problem is I cannot access this link. It appears to
be broken. Any suggestions, it will be a good place to start.


"Cor Ligthert[MVP]" wrote:

> Alex
>
> Very nice sample makes direct your question clear (although the same
> question this sample did it for me)
>
> http://silverlight.net/learn/tutorials/sqldatagrid.aspx
>
> Cor
>
>

 
Reply With Quote
 
Patrice
Guest
Posts: n/a
 
      8th Jul 2009
I wouldn't want to possibly add some confusion but try :

http://msdn.microsoft.com/en-us/data/bb931106.aspx (ADO.NET Data Services)

and

http://msdn.microsoft.com/en-us/magazine/dd695920.aspx (.NET RIA Services
beta and perhaps only for SL 3).

The idea is that you wouldn't have to create this service yourself. The goal
of those two additional layers is to "transport" a server side data model to
the client side. I would go at least for ADO.NET Data Services. The other
article is one year old - an eternity ;-) - for us IT folks...

--
Patrice


"Alex. O. Koranteng" <(E-Mail Removed)> a écrit dans le message de
groupe de discussion : F0EA63DC-4C91-4932-B358-(E-Mail Removed)...
> Colbert,
>
> Thanks for the clarification. Now I see the need to sharpen my WCF skills.
> I
> have started going through the basics using MSDN, but the material is kind
> of
> confusing since I did not come from the traditional web services model.
> Would
> you know of any good basic links and samples to get me started
>
>
> "Colbert Zhou [MSFT]" wrote:
>
>> Hi Alex,
>>
>> Currently, Silverlight does not support to do Data Access directly from
>> the
>> Silverlight application itself because of some security issues. But I
>> believe the Data Access API will be improved in the future release
>> versions.
>>
>> Currently, the only way is using a WCF or WebService to wrap a Data
>> Access
>> Layer. It does not matter how we do the Data Access from the WCF or
>> WebSerivce wrapper. We can do it via the tranditional ADO.NET , LINQ to
>> SQL
>> or Entity Framework. As long as we retrieve the Data in the WCF or
>> WebService layer, we can consum the WCF or WebService to get the data.
>>
>> We can see some discussion and detailed walkthrough on the web,
>> http://blogs.msdn.com/brada/archive/...-centric-appli
>> cation-with-silverlight-2.aspx
>> http://silverlight.net/forums/t/16915.aspx
>> http://silverlight.net/forums/p/16733/55609.aspx#55609
>>
>>
>> Best regards,
>> Colbert Zhou
>> Microsoft Newsgroup Support Team
>>
>>


 
Reply With Quote
 
Alex. O. Koranteng
Guest
Posts: n/a
 
      8th Jul 2009
Colbert,

THanks for the link. I cannot access the links. Any suggestions will be
appreciated.

"Colbert Zhou [MSFT]" wrote:

> Hi Alex,
>
> Currently, Silverlight does not support to do Data Access directly from the
> Silverlight application itself because of some security issues. But I
> believe the Data Access API will be improved in the future release
> versions.
>
> Currently, the only way is using a WCF or WebService to wrap a Data Access
> Layer. It does not matter how we do the Data Access from the WCF or
> WebSerivce wrapper. We can do it via the tranditional ADO.NET , LINQ to SQL
> or Entity Framework. As long as we retrieve the Data in the WCF or
> WebService layer, we can consum the WCF or WebService to get the data.
>
> We can see some discussion and detailed walkthrough on the web,
> http://blogs.msdn.com/brada/archive/...-centric-appli
> cation-with-silverlight-2.aspx
> http://silverlight.net/forums/t/16915.aspx
> http://silverlight.net/forums/p/16733/55609.aspx#55609
>
>
> Best regards,
> Colbert Zhou
> Microsoft Newsgroup Support Team
>
>

 
Reply With Quote
 
Gregory A. Beamer
Guest
Posts: n/a
 
      8th Jul 2009
=?Utf-8?B?QWxleC4gTy4gS29yYW50ZW5n?= <(E-Mail Removed)> wrote in
news:4DEBCF79-A904-4440-83CF-(E-Mail Removed):

> Cor,
>
> Thanks for the link. The problem is I cannot access this link. It
> appears to be broken. Any suggestions, it will be a good place to
> start.



Probably messed up the URL. Here is the SNURL version (just checked it):
http://snurl.com/mdylz

PDF version:
http://snurl.com/mdyl3

Code for the sample:
http://snurl.com/mdynu


--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

*******************************************
| Think outside the box! |
*******************************************
 
Reply With Quote
 
Alex. O. Koranteng
Guest
Posts: n/a
 
      8th Jul 2009
Gregory,

Thanks a lot for the link. I can get to the page

"Gregory A. Beamer" wrote:

> =?Utf-8?B?QWxleC4gTy4gS29yYW50ZW5n?= <(E-Mail Removed)> wrote in
> news:4DEBCF79-A904-4440-83CF-(E-Mail Removed):
>
> > Cor,
> >
> > Thanks for the link. The problem is I cannot access this link. It
> > appears to be broken. Any suggestions, it will be a good place to
> > start.

>
>
> Probably messed up the URL. Here is the SNURL version (just checked it):
> http://snurl.com/mdylz
>
> PDF version:
> http://snurl.com/mdyl3
>
> Code for the sample:
> http://snurl.com/mdynu
>
>
> --
> Gregory A. Beamer
> MVP; MCP: +I, SE, SD, DBA
>
> Twitter: @gbworld
> Blog: http://gregorybeamer.spaces.live.com
>
> *******************************************
> | Think outside the box! |
> *******************************************
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
High volume data access architecture =?Utf-8?B?SmFzZW4=?= Microsoft ADO .NET 2 21st Oct 2006 10:34 AM
Data Access Software Architecture? Tim Smith Microsoft Dot NET Framework 2 15th Mar 2004 01:41 PM
data access component 823718 3 and problem with access 3 tier architecture now Moritz Microsoft Windows 2000 Windows Updates 0 11th Nov 2003 08:48 AM
Data Access Architecture Advice Heath Kelly Microsoft ASP .NET 4 21st Aug 2003 01:41 PM
Data Access Architecture Advice Heath Kelly Microsoft ADO .NET 2 21st Aug 2003 01:41 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:49 PM.