-
as seen on Dot net Slackers
- Search for 'Dot net Slackers'
The kind folks on the Silverlight and RIA Services teams have come out with v1.0 of RIA Services. However, the instructions they provide can be a bit misleading as to What does what.Heres the skinny:1) You can download the Silverlight 4 Tools installer, dated 5/13/2010 here. This will uninstall previous…
>>> More
-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
Many of my clients are actively using Silverlight 4 and RIA Services to build powerful line of business applications. Getting things set up correctly is critical to being to being able to take full advantage of the RIA services plumbing and when developers struggle with the setup they tend to shy…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm currently in the process of creating a Silverlight 3 data driven application. To access the database, 2 common approaches are used: RIA Services and ADO.NET Data Services. Does anyone have any guidance on when/why to choose each approach? Here is what I've gathered from my research / experience…
>>> More
-
as seen on Dot net Slackers
- Search for 'Dot net Slackers'
In this second part, we will continue to discuss the WaspKiller game development—to extend the functionalities with the server-side database support. As mentioned in the first part, we’re going to rest upon another well-known design pattern, MVVM, to achieve the extension, and at the same time, introduce…
>>> More
-
as seen on Dot net Slackers
- Search for 'Dot net Slackers'
In my previous post I discussed creating the database and tables for the Silverlight HVP configuration data. All that was great, and worked just dandy until it was time to get the data from the database server to the application running on the client. But, I thought, How hard can it be? …
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
First, so you know, Silverlight 4 and VS 2010 both RC and RIA services. I'm also new to Silverlight...
I have a page that has a Telerik RadTabControl on it. It will always have six tabs, i.e. the number of tabs is not data driven. The tabs are used for various admin functions. One tab for managing…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi guys,
I have the following schema.
What I'd like to do is to retrieve all customers (and children properties) from a selected StaffAssignment by StaffId.
So I've written the following query:
from c in ObjectContext.Customers.Include("Assignments.Activities")
from a in c.Assignments
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello!
I have followed numerous tutorials and walkthroughs/blogs about the capabilities that Ria Services brings to the table when using Silverlight with ASP.Net. Essentially I am looking for a live working example of the authorization functionality that Ria Services can apparently take hold of from…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
One of my entities has an EntitySet< property with [Composition], [Include] and [Association] attributes. I populate this collection in my domain service but when I check its contents when it is received on the client, the collection is empty.
I am using Silverlight 4 RTM as well as RIA Services…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm struggling to grasp why MVVM is really a good pattern to implement in riaserivces, To me there's nothing but trouble to it, it just add's another tier that I have to code. I Get that I could change the UI, but really I don't need to. Instead i won't be able to user out of the box functionality…
>>> More