Click here to Skip to main content
15,896,154 members
Articles / Web Development / ASP.NET

Filtering LINQ Queries Using Business Rules Engine

19 Nov 2012CPOL7 min read 35.5K   779   22  
This article discusses the use of one such new feature, namely, rule-based filtering of LINQ queries using Web Rule, the XML-based super-fast rules engine, implementable as an ASP.NET or MVC component.

This article is in the Product Showcase section for our sponsors at CodeProject. These articles are intended to provide you with information on products and services that we consider useful and of value to developers.

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="CodeEffects.Rule.Demo.Filter.Asp.Common.Controls.Site" %>

<!DOCTYPE html>

<html>
	<head>
		<title>Web Rule ASP.NET Filter Demo Application</title>
		<meta http-equiv="content-type" content="text/html; charset=utf-8" />
		<link type="text/css" rel="stylesheet" href="/Common/CSS/Common.css" />
	</head>
	<body>
		<form id="form1" runat="server">
			<div class="main" style="margin-top:30px;">
				<div class="left" style="padding-left:20px;">
					<a href="http://rule.codeeffects.com" class="nodecor"><span class="logo">Rule.Code</span><span class="logo distincted">Effects</span><span class="logo">.com</span></a>
				</div>
				<div class="right" style="padding-right:14px;text-align:right;"><a href="/Default.aspx" class="nav">Postback Example</a><a href="/Ajax.aspx" class="nav">Ajax Example</a></div>
				<div class="clear"></div>
			</div>
			<div class="main">
				<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"></asp:ContentPlaceHolder>
			</div>
			<div class="main" style="text-align:center;">
				<a class="tiny" href="http://codeeffects.com">Code Effects Software</a><span class="tiny">&nbsp;&copy;&nbsp;2012</span>
				<span class="tiny bold">&nbsp;&middot;&nbsp;</span>
				<a class="tiny" href="/Terms.htm">Terms and Conditions</a>
				<span class="tiny bold">&nbsp;&middot;&nbsp;</span>
				<a class="tiny" href="/Eula.htm">EULA</a>
			</div>
		</form>
	</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions