Hi .NET Developers!
This post is dedicated to you! In the following video, we will walk you through on how you can readily add the Nimbus data services as reference service to your .NET project!
Video Highlights
- Pre Generated C# Classes
- Due to the modifications of the service, you cannot generate the Entity Classes via Visual Studio. We will provide you with a C# file to consume the web service. - Making a request & adding filters via Linq
- Simply create an instance of the object to make requests to the data service.
- Further filter the query by using Linq statements. Format: InstanceName.Where(x => x.Column < 10);
- Using results as an Array of Objects or List of Object via the ToArray() or ToList() function.
eg; InstanceName[] instanceArr = InstanceName.Where(x => x.Column < 10).ToArray();
Well, using C# to access our data services can be a plus because we have generated the entity classes you need for you to use free of charge!
See the link below for the C# entity classes and code sample.
http://projectnimbus.org/2010/03/01/csharp-proxy-classes/
That aside, I hope you find this resources useful on your journey of learning how to consume data services from Nimbus Project.
Rock On!
Advertisement
