By tag: data
0
kicks
Using Paging in WCF Data Services - Gil Fink on .Net
One of the mechanisms which were provided in WCF Data Services from the start was client side paging.
In the new release of WCF Data Services we also get a server side paging and this will be addressed in this post.
0
kicks
Linking to OData
Sesame Data Browser has been updated to allow users to create links to OData feeds. It's now possible to use hyperlinks to browse live OData feeds.
It's now also possible to quickly filter and sort data.
0
kicks
Configuraing the Data Access Application Block
I have mentioned Data Access Application Block in my previous posts and I thought it would be convenient to mention how to configure the Data Access Application Block in your project. Mr. Thiru Thangarathinam has written a very nice post about it in very detail hence I’ll just summarize it here.
...
0
kicks
Getting Started with SQL Server Data Access using Data Access Applicat
In this post, we’ll see how the same tasks that we did using ADO.Net objects can be done using Data Access Application Block. We will also see how it makes the code much more tidier. Data Access Application Block is part of Microsoft Enterprise Library.
0
kicks
A* pathfinding search in C# - Part 3
This is the last installment in the series about A* search. The C# source code implemented is available in the final part of this post. As promised in the last words of A* pathfinding search in C# - Part 2 today we’re gonna run a test case using the Romania map. This post shows a test case in which ...
0
kicks
A* pathfinding search in C# - Part 2
This post describes step by step the methods used to implement the A* search algorithm. To illustrate the path finding problem and how it can be solved using A* I decided to use the Romania map (with the same Cities I used in Breadth and depth first search series of posts). Now I modified it adding ...
0
kicks
The Only Pattern for Data Access is There Are No Patterns for Data Acc
Over the years of software development, one thing that has eluded most developers is Data Access. Yes, I mean writing code that accesses a database from your application. It is an age old problem since the days when data storage and computing were invented. We would have thought that by now we would...
0
kicks
A* pathfinding search in C# - Part 1
Standing on the shoulders of giants just like Eric Lippert, this is my try to create a running sample of the code he has presented in his magnific series of posts titled Path Finding Using A* in C# 3.0. Eric wrote the base structure of the A* pathfinding algorithm but didn’t provide a complete runni...
0
kicks
Dynamic Data: Tweaking the Filter Repeater
The default implementation of Dynamic Data provides a drop down list box for each foreign key and boolean field in a table. The drop down list allows you to filter the table with the value selected from the drop down list box. The figure below shows a view of the Product table from the AdventureWork...
0
kicks
Free Data Structures and Algorithms book
This book written by Granville Barnett and Luca Del Tongo is part of an effort to provide all developers with a core understanding of algorithms that operate on various common, and uncommon data structures.
Data Structures and Algorithms: Annotated Reference with Examples is completely free!
0
kicks
What's the difference between Bind and Eval
Data-binding expressions are contained within delimiters and use the Eval and Bind functions. The Eval function is used to define one-way (read-only) binding. The Bind function is used for two-way (updatable) binding. In addition to calling Eval and Bind methods to perform data binding in a data-bin...
0
kicks
JSONLint - Online JSON Validator
A site that allows you to enter JSON text and check it for strict compliance against the standard (RFC 4627). Errors are pointed out with quite good accuracy, highlighting the offending area. The output is also pretty-formatted. The only downsite is that your JSON text is processed and validated on ...
0
kicks
Ajax Control Toolkit - Multipart Series Article
A multi-part series article on Ajax Control Toolkit.
0
kicks
Querying YouTube using C# and Google Data Client Libraries
Querying YouTube using C# and Google Data Client Libraries with example code to download.
0
kicks
Repeater, UpdatePanels und die Datenbindung (dt.)
(Embedding a UpdatePanel in a databound Repeater without using <%# ... %>)
In dem Artikel geht es darum, wie man ein UpdatePanel in einem Repeater setzt - das ganze noch Datengebunden.