|
|
Stories recently tagged with 'Expression'
|
|
submitted by
dcarr
1 month, 19 days ago
blog.domaindotnet.com — We just finished the final iteration for this and went gold. Although this post has more marketing then I would normally post here, I at least wanted to let fellow Linq fanatics that our 'semi-secret' project with a few companies you might know has at least for now reached a milestone.
And who could announce a new product without Silverlight (grin).. No seriously we love it. WPF was not all that compelling and XAML didn't look like much fun until we got our killer app in Silverlight. We even wrote a Linq version of the 'scribbler' code the deep zoom team posted if anyone would like it.
Anyway, lots of good technical material will follow. We learned a lot and continue to learn a lot from dissecting the Linq to NHibernate project. What makes this work so fun is it demands optimization across different vendor web services. We do a kind of 'query optimizer' to decide how to fan out requests where we know the general characteristics of say 'asset classes' as data series vs. say a large list of equities. read more...
1 comment
|
category: Linq | Views: 19
|
|
tags:
Parse, Expression, DSL, Optimizer, Custom | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
world
1 month, 28 days ago
en.csharp-online.net — Your journey through Expression Web begins here with an introduction to the product. Specifically, you will do the following: Become familiar with the Expression Web interface, Learn about the many options available within the menu bar, Understand the role of Task Panes, Use and customize toolbars,
Learn to recognize and use the Development window, the tag selector, the development area, the tabbed file chooser, and the Design, Split, and Code views. read more...
1 comment
|
category: Other | Views: 4
|
|
tags:
Expressionweb, Web, Expression | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 months, 7 days ago, submitted by
ligaz
2 months, 8 days ago
blogs.telerik.com — An add-in for Expression Blend 2.5 that adds IntelliSense for editing of XAML files. read more...
|
|
tags:
Blend, 2.5, WPF, Expression | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 months, 5 days ago, submitted by
crpietschmann
5 months, 8 days ago
blogs.msdn.com — Ever since we released Deep Zoom Composer during MIX, there has been a ton of great feedback you have all sent us on what you liked and what you would like to see improved in future versions. To give you a sneak peek at where we are currently, we're releasing an updated version of Deep Zoom Composer for you all to play with: read more...
add a comment
|
category: Silverlight | Views: 8
|
|
tags:
Expression, DeepZoom, Silverlight | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 7 months, 13 days ago, submitted by
Jemm
7 months, 13 days ago
weblogs.asp.net — In this first set of Silverlight tutorials I didn't use a visual design tool to build the UI, and instead focused on showing the underlying XAML UI markup (which I think helps to explain the core programming concepts better). Now that we've finished covering the basics - let's explore some of the tools we can use to be even more productive. read more...
1 comment
|
category: Silverlight | Views: 3
|
|
tags:
Scottguthire, Expression, Blend, Silverlight, ScottGu | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
animaonline
7 months, 28 days ago
softscenario.blogspot.com — When a application want to show the result from an SQL-query as a paged view, i.e. showing ten or fifteen result on first page, then have a "next" function to show the next page of results.
To minimize traffic over the network, it is best practice to do the paging on the SQL-server, so that only the results you want to show is sendt to the application.
With SQL Server 2005 this is quite easy using the new CTE capabilities and the new ROW_NUMBER() function.
(using the AdventureWorks example database for SQL-2005 http://codeplex.com/)
Consider the following T-SQL to select out all employees from Person.Contact:
SELECT [FirstName]
,[MiddleName]
,[LastName]
,[EmailAddress]
FROM [Person].[Contact]
This will result in 19972 rows returned, and the paging logic has to be done on the client application. not good.. so first we implement the ROW_NUMBER() function like this:
SELECT ROW_NUMBER() OVER (Order by [Person].[Contact].[LastName]) AS RowID,
[FirstName]
,[MiddleName]
,[LastName]
,[EmailAddress]
FROM [Person].[Contact]
This will create a unique RowID for each row in the result.
Now we need to wrap the result in a CTE using just the WITH [ctename] AS () statement:
WITH AllEmployees AS
(SELECT ROW_NUMBER() OVER (Order by [Person].[Contact].[LastName]) AS RowID,
[FirstName]
,[MiddleName]
,[LastName]
,[EmailAddress]
FROM [Person].[Contact])
Now we have all the Employees in a in-memory table called AllEmployees, and we can select from this table as any other table, with all the common clauses. Simplest term:
SELECT [FirstName]
,[MiddleName]
,[LastName]
,[EmailAddress]
FROM AllEmployees
Then, to use this for a Server-side paging solution, the simplest way we use the RowID to establish what rows to return, either by using DECLARE [varname] or by putting the whole code into a Parameterized StoredProcedure like this:
CREATE PROC GetPagedEmployees (@NumbersOnPage INT=25,@PageNumb INT = 1)
AS BEGIN
WITH AllEmployees AS
(SELECT ROW_NUMBER() OVER (Order by [Person].[Contact].[LastName]) AS RowID,
[FirstName],[MiddleName],[LastName],[EmailAddress] FROM [Person].[Contact])
SELECT [FirstName],[MiddleName],[LastName],[EmailAddress]
FROM AllEmployees WHERE RowID BETWEEN
((@PageNumb - 1) * @NumbersOnPage) + 1 AND @PageNumb * NumbersOnPage
ORDER BY RowID
END
The parameter for this procedure is used for the paging and when executed it will return a result based on how many results per page, and what page read more...
add a comment
|
category: C# | Views: 10
|
|
tags:
table, CTE, Common, Expression, software | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
razamit
9 months, 20 days ago
dev102.blogspot.com — Say you absolutely have to change the Button of a Combobox to a circle instead of an arrow - you just have to!!!!
Here comes Microsoft Expression Blend to the rescue
read more...
|
|
tags:
Blend, C#, WPF, Expression | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
1 year, 5 months ago
microsoft.com — We are pleased to present our very first preview of Microsoft® Expression Blend™ 2. The Expression Blend 2 May Preview allows you to create Microsoft® Silverlight™-based applications. Additionally, you can export content from Microsoft® Expression® Design in a format that can be used in Silverlight-based applications that you create in Expression Blend 2 May Preview. You may also find Microsoft® Expression® Media Encoder Preview to be helpful when working with video, Silverlight, and Expression Blend 2 May Preview. Learn more about Silverlight and its community today. read more...
|
|
tags:
preview, xaml, ExpressionBlend, Silverlight, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 6 months ago, submitted by
bashmohandes
1 year, 6 months ago
spellcoder.com — I had some free time at last, so I implemented a LINQ extension to Flickr, so you can query for photos by tags, creation date, user id or title, the implementation was really easy because I didn't have to use the Flickr API's directly as I found a good open source library for this called FlickrNet which I used as my infrastructure.
So this is a sample of a query read more...
1 comment
|
category: C# | Views: 0
|
|
tags:
LINQ, Flickr, Expression, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 9 months ago, submitted by
ehoff
1 year, 10 months ago
evanhoff.com — Expression Web is the successor to FrontPage and has a lot of features that were sorely missing: standards validation, strong css support, asp.net support, xml and xslt. While FrontPage was designed for the casual user, Expression Web was designed with the professional in mind. read more...
add a comment
|
category: ASP.NET | Views: 0
|
|
tags:
html, XML, xslt, dreamweaver, CSS | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|