|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
94 Articles match "Data"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
Learn to combine flavors of LINQ to query and transform in-memory collections, XML data sources, and relational databases. Learn to develop applications for EF and LINQ to Entities and employ ADO.NET Data Services to integrate data from the Internet cloud. Apply techniques for building real-world data-driven applications, including ASP.NET and WPF data binding. How can I create and consume data from the Internet cloud using REST-ful data services? WPF Data Binding.NET 3.0 In this course, you learn to: Leverage new features of C# 3.0,
DevelopMentor Courses
- Friday, June 12, 2009
Essential Spring 2.5 and Hibernate
Take advantage of Hibernate's data filtering and interception. Spring's Aspect-Oriented Programming (AOP) framework enables developers to declaratively apply common features and capabilities across data types in a transparent fashion. Students who attend Integrating Hibernate and Spring (Hibernate Emphasis) will leave the course armed with the required skills to design and implement Spring applications that effectively and transparently use Hibernate to manage data persistence.? Map Java classes to relational tables. Spring makes J2EE development easier.
DevelopMentor Courses
- Friday, June 12, 2009
Essential Silverlight 3
How do I integrate data into my application to create a dynamic user interface with minimal code? How can I use local files and external web services to store and retrieve data? The course shows you how to build Silverlight applications that utilize drag-and-drop, dynamic custom controls, streaming media, animation, and integrated Web Services to produce data-driven user interfaces. This module shows how to create OOB applications, including how to handle state transitions, cache required data in isolated storage, and detect changes in network connectivity.
DevelopMentor Courses
- Wednesday, June 17, 2009
|
237 Articles match "Data"
|
The Latest from DevelopMentor
|
MORE
|
|
Moving StarterSTS to the (Azure) Cloud
This makes the migration to different data stores less painful. relying party data from table storage), it makes sense to cache certain data in the front end. also include a (very) simple web page that allows working with the relying party provider data. Quite some people asked me about an Azure version of StarterSTS. While I kinda knew what I had to do to make the move, I couldn’t find the time. Until recently. This blog post briefly documents the necessary changes and design decisions for the next version of StarterSTS which will work both on-premise and on Azure.
www.leastprivilege.com
- Wednesday, August 11, 2010
Setting up SQL Server 2008 Express with Profiler
and WCF Data Services , I use the Express Edition of SQL Server 2008 R2, but I have need for the SQL Profiler tool, which comes only with the full version and is needed to inspect what SQL is sent to the database. When I teach my DevelopMentor course on Entity Framework 4.0 In addition, the setup folks often have a hard time getting the permissions right. So I wrote a script that first installs just the tools from a trial version of the Developer Edition, which include both SQL Management Studio and SQL Profiler. Click on the Eval X86 Executable link to download SQLFULL_x86_ENU.exe.
Tony and Zuzana's World
- Thursday, August 5, 2010
Purchasing Visual Studio 2010
Database Test Data Generation. Amazon sells various versions of Visual Studio 2010. Here is an overview of versions and this will give you a good indication of prices. Below the prices is a feature comparison also…. Visual Studio Professional. Plain. Upgrade from 2005/2008. with MSDN. Visual Studio Premium. with new MSDN. with MSDN renewal. Visual Studio Utlimate. with new MSDN. with MSDN renewal. Visual Studio 2010 Feature Comparison. Debugging & Diagnostic. IntelliTrace (Historical Debugger). Static Code Analysis. Code Metrics. Profiling. Testing. Unit Testing. Code Coverage.
The Blomsma Code
- Tuesday, July 13, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Paging with the Silverlight RIA services DomainDataSource
Using the declarative DomainDataSource that is part of the upcoming Silverlight 3 RIA services makes it quite easy to work with data. All you need to do is add a DomainDataSource control to the the XAML, point it to the generated DomainContext class (in this case NorthwindContext) and tell it which method to use to load the data from the web service(in this case LoadCustomers). Next add a DataGrid to display the data and you are good to go. Sometimes the lost of data to load can get somewhat large and you might not want to load all data. Adding paging. Enjoy!
The Problem Solver
- Monday, April 27, 2009
-
WPF Data Providers
One of the nifty new features of the WPF platform is the pluggable data providers. XmlDataProvider: loads an XML data source and makes it available as a binding source. Both of these derive from the abstract class System.Data.DataSourceProvider which implements the binding glue ( INotifyPropertyChanged ) needed for data binding. side note here is that you could write your own custom data provider if you needed to, although if the data is exposed through a.NET object, then the ObjectDataProvider is probably sufficient. State, Age, Income. xmlns = " [link] ".
Mark's Blog of Random Thoughts
- Wednesday, January 17, 2007
-
Securing WCF Data Services using WIF
Since WCF Data Services is just a normal WCF service (using the web programming model), all the typical security APIs and extensibility points apply. Here’s a quick walkthrough: Enabling WIF in the Data Service. Sending a token header to the Data Service. The next step is to send a token to the Data Service. Using the Data Service. LINQ to query the Data Service. This questions comes up every once in a while. That said, depending on your scenario you might have to be a little more creative for REST-style services. SimpleWebTokenAuthorizationManager (.
www.leastprivilege.com
- Monday, February 15, 2010
-
WCF Data Services versus WCF Soap Services
WCF Data Services? This is a great question because it relates to a recent re-alignment of what used to be called “ADO.NET Data Services” (code-named Astoria) under the umbrella of Windows Communication Foundation (WCF), as well as the renaming of.NET RIA Services to WCF RIA Services. The truth is that RIA Services rests on Data Services, which is turn sits on top of Web HTTP Services (aka REST), which is tightly coupled to HTTP as a transport and XML, Atom or Json as a format. But Microsoft has done a lot of work on the client-side programming model for Data Services.
Tony and Zuzana's World
- Tuesday, April 13, 2010
-
Passing data into a Windows Workflow Foundation 4 workflow
To allows us to pass data into a workflow, or get something out, we need to use an Argument. Passing parameters into a workflow is similar in WF4 as it was in WF3. In both case a Dictionary is passed in when creating the workflow instance object. Alternatively when using the WF4 WorkflowInvoker you can pass it into the Invoke() method. This is quite simple but I have never been a fan of the very loose coupling here. basically on the outside you have to create a dictionary with as key something inside of the workflow. No compile time checking. myInstance.Run(). syncEvent.WaitOne(). Enjoy!
The Problem Solver
- Tuesday, June 30, 2009
-
Trying the WF ADO.NET Activity Pack CTP 1
Next we need to map the data loaded to our customer type. For this purpose we get a record variable that points to a SqlDataReader and we can use the record.GetString(index) and similar functions to load the data. Tags: NET Workflow WF4 Data Access VS2010 Recently the workflow team at Microsoft released a first CTP to the ADO.NET Activity Pack. In this blog post I am going to take a quick look at how to get started with these activities. First step is installing the activity pack. Download the setup MSI from [link] and run the installer. Quite primitive [:(]. False. Enjoy!
The Problem Solver
- Tuesday, April 27, 2010
-
Data and Windows Workflow Foundation 4
One thing that has completely changed in Windows Workflow Foundation is the way we work with data in a workflow. In WF 3 we used properties to store data. Dependency properties left the way data was stored to be handled by the workflow runtime but in our program we could use them just like any other property. We are no longer using properties to store data. Most of the time we will need to use variables, represented by types deriving from Variable, or arguments, types deriving from Argument, to work with data. In WF 4 this has all changed! Enjoy!
The Problem Solver
- Monday, July 20, 2009
|
|
|