User Yoann. B - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T15:11:29Z http://stackoverflow.com/feeds/user/50974 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1900002/secure-access-between-wcf-web-services-and-flash-web-site 0 Secure Access between WCF Web Services and Flash Web Site Yoann. B 2009-12-14T10:00:21Z 2009-12-14T10:00:21Z <p>How-To Secure Access between WCF Web Services and Flash Web Site ?</p> <p>I don't want any other users call the web service out of the flash object.</p> http://stackoverflow.com/questions/1864216/soa-architecture-real-world-samples-with-net 0 SOA Architecture Real-World Samples with .NET Yoann. B 2009-12-08T02:26:08Z 2009-12-09T17:15:28Z <p>Hi,</p> <p>Any SOA Architecture (n-tier) Real-World Samples with .NET for getting started ?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1807237/best-approach-to-handle-user-rights-in-desktop-applications 0 Best Approach to Handle User Rights in Desktop Applications Yoann. B 2009-11-27T07:24:45Z 2009-12-09T15:23:23Z <p>Hi,</p> <p>I'm currently developping some desktop applications (WinForm) with a couple of screens, however i need to handle user rights.</p> <blockquote> <p><strong>Desktop Application :</strong></p> <p>Screen : Customers (GridView) (View/Edit/Create)</p> </blockquote> <p>Some users are allowed to View only Customers, but some other users are allowed to Edit/Create Customers.</p> <p>How can i implement a "screen user rights" ?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1816998/entityframework-or-linqtosql-entity-namespace 1 EntityFramework or LinqToSql Entity Namespace Yoann. B 2009-11-29T22:27:03Z 2009-12-09T14:31:58Z <p>Hi,</p> <p>I want to specify entity namespace based on my domain structure. Usually like that :</p> <p>Infrastructure.SqlServer</p> <ul> <li>Customers (NS : Infrastructure.SqlServer.Customers) <ul> <li>Customer</li> <li>Address</li> </ul></li> <li>Products (NS : Infrastructure.SqlServer.Products) <ul> <li>Product</li> <li>ProductVariant</li> <li>ProductCategory</li> </ul></li> </ul> <p>How can i do that with LinqToSql or EntityFramework ? It seems that we only can specifiy a unique "Entity namespace" like Infrastructure.SqlServer.Entities</p> <p>Thanks.</p> http://stackoverflow.com/questions/1851927/teamcity-vs-team-build 1 TeamCity vs Team Build Yoann. B 2009-12-05T11:19:28Z 2009-12-05T11:48:10Z <p>What's pro/cons between TeamCity and Team Build and why choose one instead of the other ?</p> http://stackoverflow.com/questions/1845444/is-nhibernate-linq-1-0-ga-provider-production-ready 4 Is NHibernate.Linq 1.0 GA Provider Production Ready Yoann. B 2009-12-04T07:41:27Z 2009-12-04T09:08:09Z <p>Is NHibernate.Linq 1.0 GA Provider Production Ready ?</p> http://stackoverflow.com/questions/1845688/fluent-entity-framework-mapping 0 Fluent Entity Framework Mapping Yoann. B 2009-12-04T08:46:59Z 2009-12-04T09:02:45Z <p>Hi,</p> <p>Is there any way to perform Fluent EF Mapping like Fluent NHibernate for NHibernate ?</p> http://stackoverflow.com/questions/1828262/site-to-site-data-synchronization-over-wcf 0 Site-To-Site Data synchronization Over WCF Yoann. B 2009-12-01T19:19:32Z 2009-12-03T03:31:29Z <p>Hi,</p> <p>I'm developping a distributed solution with a WebSite and a Corporate Application Management.</p> <p>Here is the architecture :</p> <blockquote> <p><strong>Web Site :</strong></p> <ul> <li><p>Database (SQL Server)</p></li> <li><p>Web Site : ASP.NET MVC</p></li> <li><p>Data synchronization Services (WCF)</p></li> </ul> </blockquote> <p>-</p> <blockquote> <p><strong>Corporate Management Application :</strong></p> <ul> <li><p>Database (SQL Server)</p></li> <li><p>WinForm Application</p></li> <li><p>Data synchronization Services (WCF)</p></li> </ul> </blockquote> <p>I want to perform Site-To-Site data synchronization.</p> <p><strong>Note</strong> : The Corporate Management Application Database is the Warehouse datastore.</p> <p>Usually i want Corporate side asks Web Site for data synchronization.</p> <p>So here is the scenario :</p> <ul> <li>(WebSite Side) Some data changed => Local DataStore</li> <li>(Corporate Side) Ask WebSite for changes => Sync data from Web Site datastore to warehouse datastore</li> <li>(Corporate Side) Some data changed => Warehouse store => Sync to WebSite Local Datastore</li> </ul> <p>How can i achieve this and what is the best approach ?</p> http://stackoverflow.com/questions/1823947/automapper-with-generic-type-inheritance 0 AutoMapper With Generic Type Inheritance Yoann. B 2009-12-01T04:11:42Z 2009-12-01T11:10:44Z <p>Hi,</p> <p>I'm trying to map CustomerDTO with my domain entity ICustomer with AutoMapper. Everything works fine for first inheritance level but not for the others.</p> <p>I'm using Interfaces for my domain model since concrete types are injected by StructureMap from my LinqToSql Database Infrastructure layer.</p> <pre><code>public interface IBaseEntity&lt;TPk&gt; { TPk Id { get; } } public interface ICustomer : IBaseEntity&lt;int&gt; { string Email { get; set; } } [DataContract] public class CustomerDTO { [DataMember] public int Id { get; set; } [DataMember] public string Email { get; set; } } </code></pre> <p>Now the AutoMapper mapping</p> <pre><code>Mapper.CreateMap&lt;CustomerDTO, ICustomer&gt;(); Mapper.CreateMap&lt;ICustomer, CustomerDTO&gt;(); Mapper.AssertConfigurationIsValid(); </code></pre> <p>Now where i'm using the mapping</p> <pre><code> public CreateCustomerServiceResult CreateCustomer(CustomerDTO customer) { var result = new CreateCustomerServiceResult(); try { var originalMapped = Mapper.DynamicMap&lt;CustomerDTO, ICustomer&gt;(customer); var newCustomer = _customerService.CreateCustomer(originalMapped); var newMapped = Mapper.DynamicMap&lt;ICustomer, CustomerDTO&gt;(newCustomer); result.Customer = newMapped; } catch (Exception ex) { } return result; } </code></pre> <p>I've got a <strong>Dictionnary missing Key Exception</strong> on the "Id" property ...</p> http://stackoverflow.com/questions/1823947/automapper-with-generic-type-inheritance/1825491#1825491 0 Answer by Yoann. B for AutoMapper With Generic Type Inheritance Yoann. B 2009-12-01T11:10:44Z 2009-12-01T11:10:44Z <p>Got It!</p> <p>The problem was due to the missing setter of "Id" property of IBaseEntity.</p> <p>After changing it everything works</p> <pre><code>public interface IBaseEntity&lt;TPk&gt; { TPk Id { get; get; } } </code></pre> http://stackoverflow.com/questions/1819415/application-services-vs-wcf-services 0 Application Services Vs WCF Services Yoann. B 2009-11-30T12:06:13Z 2009-11-30T12:22:10Z <p>Hi,</p> <p>What's the difference between Application Services and WCF Services ?</p> <p>In a distributed environment :</p> <p>Presentation => WCF => Application Logic => DataStore</p> <p>Should i consider Application Logic "Services" as also WCF Services, or may i create seperate WCF services that exposes some Application Logic "Services" to client with DTO &lt;=> Entites transformation logic ?</p> http://stackoverflow.com/questions/1817092/best-approach-to-handle-data-concurrency-in-3-tier-application 0 Best Approach to handle Data Concurrency In 3-Tier Application Yoann. B 2009-11-29T23:05:56Z 2009-11-29T23:38:33Z <p>Hi,</p> <p>What is the best approach to handle Data Concurrency issues in a 3 layered Application (WCF + LinqToSql or EF) with detached entities or DTOs ?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1813110/how-to-secure-desktop-application-to-web-service-calls 1 How-To Secure Desktop Application To Web Service Calls Yoann. B 2009-11-28T17:19:07Z 2009-11-28T17:51:35Z <p>Hi,</p> <p>How can i secure Web Service calls from a desktop application (winform) ?</p> <p>I first think about pass login/password to each web services methods and then check from my database of user is authorized, but i'm looking for a better way to secure that.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1812944/how-to-integrate-paypal-with-winform-desktop-application 0 How-to integrate Paypal with WinForm Desktop Application Yoann. B 2009-11-28T16:29:00Z 2009-11-28T17:40:29Z <p>How-to integrate Paypal with WinForm Desktop Application</p> <p>Maybe Server-to-Server solution ?</p> http://stackoverflow.com/questions/411660/enterprise-library-unity-vs-other-ioc-containers 10 Enterprise Library Unity vs Other IoC Containers Yoann. B 2009-01-04T21:00:30Z 2009-11-27T11:50:42Z <p>Hi,</p> <p>What's pros and cons of using Enterprise Library Unity between other IoC (Windsor ..)</p> http://stackoverflow.com/questions/1774910/mixed-forms-and-ldap-authentication-with-auto-registration-with-asp-net-mvc 0 Mixed Forms and LDAP authentication with auto-registration with ASP.NET MVC. Yoann. B 2009-11-21T08:08:54Z 2009-11-21T09:01:58Z <p>Hi,</p> <p>I need to use Form-Based authentication on an ASP.NET MVC web site with LDAP (Active Directory) backend like TeamCity for instance.</p> <p>So i need to query LDAP first if the requested user is valid, then auto-register user in database according to LDAP user authentication infos in order to use mixed authentication :</p> <p><strong>Users :</strong></p> <p>Admin (local web site user, stored in database only)</p> <p>Somebody (LDAP user, auto-registered in database on first login)</p> <p>Thanks.</p> http://stackoverflow.com/questions/1689375/design-real-time-product-stock-management 0 Design Real-Time Product Stock Management Yoann. B 2009-11-06T18:19:46Z 2009-11-19T19:23:10Z <p>Hi,</p> <p>I need to design a real-time product stock management engine (C# &amp; WCF) but i don't know how to proceed in order to handle concurrency access and data integrity.</p> <p>Here is some of the features the engine should be handle :</p> <ol> <li>Stock Incoming products </li> <li>Order preparation</li> <li>Move products from one place to another</li> <li>...</li> </ol> <p>May i use MSMQ in order to ensure correct stock count (Messages processed in order by message pooling) or may i use application thread locking.</p> <p>Note that my application have to be in Real-Time, preparer have to know in real-time how many products there are in stock in time. If there is lack of products at picking he can send a "request" to an operator.</p> http://stackoverflow.com/questions/1630752/configuration-syscache2-with-fluent-nhibernate 1 Configuration SysCache2 With Fluent NHibernate Yoann. B 2009-10-27T13:19:05Z 2009-11-11T06:04:32Z <p>Hi,</p> <p>How can i configure SysCache2 2nd-Level Cache with Fluent NHibernate configuration ?</p> <pre><code> private ISessionFactory CreateSessionFactory() { return Fluently.Configure() .Database(MsSqlConfiguration.MsSql2008.ConnectionString(_connectionString) .Cache(c =&gt; c.UseQueryCache()) .Dialect&lt;FullTextSearchEnabledMsSql2008Dialect&gt;() .UseReflectionOptimizer()) .Mappings(m =&gt; m.FluentMappings.AddFromAssembly(Assembly.GetExecutingAssembly())) .BuildSessionFactory(); } </code></pre> http://stackoverflow.com/questions/1708018/how-to-prevent-module-duplicates-with-mef 2 How-To Prevent Module Duplicates with MEF ? Yoann. B 2009-11-10T13:37:17Z 2009-11-10T16:57:24Z <p>Hi,</p> <p>How can i prevent from MEF to load duplicates Modules in the case of the presence of 2 copies of the same Assembly (maybe by mistake)</p> <ul> <li><p>Assembly1.dll</p></li> <li><p>Assembly2.dll (copy of Assembly1)</p> <pre><code>[ImportMany] public IList&lt;IModule&gt; Modules { get; private set; } public void BuildUp() { Modules = new List&lt;IModule&gt;(); <pre><code>var catalog = new DirectoryCatalog(@".\Modules"); var container = new CompositionContainer(catalog); container.ComposeParts(this); </code></pre> } </code></pre></li> </ul> http://stackoverflow.com/questions/1627654/how-to-mock-msmq-messagequeue 3 How-To Mock MSMQ MessageQueue Yoann. B 2009-10-26T22:16:51Z 2009-11-08T13:26:49Z <p>Hi,</p> <p>I want to Unit Test my application which use MSMQ but i found no way in order to Mock MessageQueue objects.</p> <pre><code> var queuePath = @".\Private$\MyQueue"; MessageQueue queue = null; if (MessageQueue.Exists(queuePath)) { queue = new MessageQueue(queuePath); } else { queue = MessageQueue.Create(queuePath); } </code></pre> <p>I'm using Moq with xUnit.</p> http://stackoverflow.com/questions/1652224/how-to-deal-with-multi-criteria-queries-in-3-tier-architecture 3 How-To Deal with Multi-Criteria Queries in 3-Tier Architecture Yoann. B 2009-10-30T20:46:48Z 2009-11-08T06:37:58Z <p>Assuming a basic 3-Tier application (UI-Service-Data Access) with a total abstraction of Data Access layer (SQL, Xml ...)</p> <p>The UI applications are composed with Datagrids with multi criteria filters, find etc..</p> <p>So how-to deal with mutli-criteria queries in this architecture without having to create multiple service methods with all possible criteria as parameters...</p> <p>Note that UI tier doesn't know how the DAL works.</p> http://stackoverflow.com/questions/1657705/array-constructor-dependency-with-structuremap 1 Array Constructor Dependency With StructureMap Yoann. B 2009-11-01T17:18:03Z 2009-11-04T19:32:41Z <p>I've some ITask concretes types defines in my TaskRegistry :</p> <pre><code>public class TaskResigstry : Registry { public TaskResigstry() { ForRequestedType&lt;IBootstrapperTask&gt;().TheDefaultIsConcreteType&lt;StartTasks&gt;(); ForRequestedType&lt;ITask&gt;().TheDefaultIsConcreteType&lt;FirstTask&gt;(); ForRequestedType&lt;ITask&gt;().AddConcreteType&lt;SecondTask&gt;(); ForRequestedType&lt;ITask&gt;().AddConcreteType&lt;ThirdTask&gt;(); } } </code></pre> <p>And my StartTasks</p> <pre><code>public class StartTasks : IBootstrapperTask { public StartTasks(ITask[] tasks) { foreach(var task in tasks) { task.Run(); } } } </code></pre> <p>How can i inject the ITask[] constructor parameter using StructureMap ?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1662150/is-using-db4o-for-web-sites-a-judicious-choice 3 Is Using Db4o For Web Sites a judicious choice? Yoann. B 2009-11-02T16:01:09Z 2009-11-03T19:03:55Z <p>Is using Db4o as a backend datastore for a Web site (ASP.NET MVC) a judicious choice as an alternative to MS SQL Server ?</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1657870#1657870 -1 Answer by Yoann. B for What's your most controversial programming opinion? Yoann. B 2009-11-01T18:17:33Z 2009-11-01T18:17:33Z <p><strong>It Works, It's compatible, It'll be released soon</strong></p> http://stackoverflow.com/questions/1634967/sharedcache-vs-memcached-for-nhibernate-with-asp-net-mvc 0 SharedCache vs Memcached For NHibernate With ASP.NET MVC Yoann. B 2009-10-28T02:53:16Z 2009-10-28T02:58:37Z <p>Hi,</p> <p>Which shared cache provider should i use for my asp.net mvc working with NHibernate ?</p> <p><a href="http://www.sharedcache.com/cms/" rel="nofollow">ShardCache NHibernate Provider</a></p> <p><a href="http://nhforge.org/media/p/6.aspx" rel="nofollow">Memcached NHibernate Provider</a></p> <p>Thanks.</p> http://stackoverflow.com/questions/1609264/memcached-net-clients-comparisons 2 Memcached .NET Clients Comparisons Yoann. B 2009-10-22T18:52:55Z 2009-10-23T18:14:02Z <p>Hi,</p> <p>I'm looking for a .NET Memcached Client, I founded 3 clients libraries.</p> <p>Anyone have pros and cons about theses clients ?</p> <p><a href="http://sourceforge.net/projects/memcacheddotnet/" rel="nofollow">MemcachedDotNet</a></p> <p><a href="http://code.google.com/p/beitmemcached/" rel="nofollow">BeIT</a></p> <p><a href="http://www.codeplex.com/EnyimMemcached" rel="nofollow">Enyim</a></p> <p>Thanks.</p> http://stackoverflow.com/questions/1582563/count-word-occurrences-in-a-text-field-with-linq 0 Count word occurrences in a text field with LINQ Yoann. B 2009-10-17T16:18:12Z 2009-10-17T18:16:40Z <p>How can i get the occurrences count of a Word in a database text field With LINQ ?</p> <p>Keyword token sample : ASP.NET</p> <p>EDIT 4 :</p> <p>Database Records :</p> <p>Record 1 : [TextField] = "Blah blah blah <strong>ASP.NET</strong> bli bli bli <strong>ASP.NET</strong> blu <strong>ASP.NET</strong> yop yop <strong>ASP.NET</strong>"</p> <p>Record 2 : [TextField] = "Blah blah blah bli bli bli blu <strong>ASP.NET</strong> yop yop <strong>ASP.NET</strong>"</p> <p>Record 3 : [TextField] = "Blah <strong>ASP.NET</strong> blah <strong>ASP.NET</strong> blah <strong>ASP.NET</strong> bli <strong>ASP.NET</strong> bli bli <strong>ASP.NET</strong> blu <strong>ASP.NET</strong> yop yop <strong>ASP.NET</strong>"</p> <p>So</p> <p>Record 1 Contains 4 occurrence of "ASP.NET" keyword</p> <p>Record 2 Contains 2 occurrence of "ASP.NET" keyword</p> <p>Record 3 Contains 7 occurrence of "ASP.NET" keyword</p> <p>Collection Extraction IList &lt; RecordModel > (ordered by word count descending)</p> <ul> <li>Record 3</li> <li>Record 1</li> <li>Record 2</li> </ul> <p>LinqToSQL should be the best, but LinqToObject too :)</p> <p>NB : No issue about the "." of ASP.NET keyword (this is not the goal if this question)</p> http://stackoverflow.com/questions/1566122/loginbox-in-masterpage-with-asp-net-mvc 1 LoginBox in MasterPage With ASP.NET MVC Yoann. B 2009-10-14T13:08:31Z 2009-10-14T14:46:41Z <p>Hi,</p> <p>I'm using a LoginBox placed in MasterPage in order to user be able to login from any site pages.</p> <p>The form action is declared by</p> <pre><code>&lt;% using (Html.BeginForm("LogOn", "Account", FormMethod.Post)) </code></pre> <p>but after POST and if failed login occurs i need stay on the same page and display Validation Messages.</p> <p>So how can i do to stay on the calling page and not being redirected to Account LogOn View ?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1504849/iis-7-reverse-proxy-with-ssl 0 IIS 7 Reverse Proxy With SSL ? Yoann. B 2009-10-01T16:02:23Z 2009-10-01T16:02:23Z <p>Which IIS 7 ISAPI Filter can help me doing that :</p> <p><a href="http://site1.domain1.com:80" rel="nofollow">http://site1.domain1.com:80</a> ==> Internal IIS Server 1 (HTTP, TCP 80)</p> <p><a href="https://site2.domain1.com:443" rel="nofollow">https://site2.domain1.com:443</a> ==> Internal IIS Server 1 (HTTPS, TCP 443)</p> <p><a href="http://site1.domain2.com:80" rel="nofollow">http://site1.domain2.com:80</a> ==> Internal IIS Server 2 (HTTP, TCP 80)</p> <p><a href="http://site2.domain2.com:443" rel="nofollow">http://site2.domain2.com:443</a> ==> Internal IIS Server 2 (HTTPS, TCP 443)</p> <p><a href="http://site1.domain3.com:80" rel="nofollow">http://site1.domain3.com:80</a> ==> Internal IIS Server 2 (HTTP, TCP 8080)</p> <p><a href="http://site2.domain3.com:443" rel="nofollow">http://site2.domain3.com:443</a> ==> Internal IIS Server 2 (HTTPS, TCP 8443)</p> http://stackoverflow.com/questions/681269/how-to-keep-projects-structure-with-tfs-team-build 2 How-to Keep Projects Structure with TFS Team Build Yoann. B 2009-03-25T12:03:49Z 2009-10-01T10:28:23Z <p>Hi,</p> <p>I've a Solution structure as below :</p> <p>Solution 1 (Solution1.sln)</p> <ul> <li>Project 1</li> <li>Project 2</li> <li>Project 3</li> </ul> <p>I created a Team Build definition working with Solution1.sln. My problem is that compiled binaries are stored into a single flat output folder : BuildName\Release</p> <p>But I want to keep my project structure :</p> <p>BuildName\Project 1\Release</p> <p>BuildName\Project 2\Release</p> <p>BuildName\Project 3\Release</p> http://stackoverflow.com/questions/1864216/soa-architecture-real-world-samples-with-net/1864237#1864237 Comment by Yoann. B on SOA Architecture Real-World Samples with .NET Yoann. B 2009-12-08T10:42:37Z 2009-12-08T10:42:37Z I'm more looking for source code samples, articles are useful to understand principles but i need some code to begin with http://stackoverflow.com/questions/1817092/best-approach-to-handle-data-concurrency-in-3-tier-application/1817125#1817125 Comment by Yoann. B on Best Approach to handle Data Concurrency In 3-Tier Application Yoann. B 2009-11-29T23:26:01Z 2009-11-29T23:26:01Z Does it also work with DTOs which might be not contains all Entity fields but at least ID ? http://stackoverflow.com/questions/1817092/best-approach-to-handle-data-concurrency-in-3-tier-application Comment by Yoann. B on Best Approach to handle Data Concurrency In 3-Tier Application Yoann. B 2009-11-29T23:22:32Z 2009-11-29T23:22:32Z I mean data concistency, i want to find the best approach in order to prevent already updated data by someone being updated by another user http://stackoverflow.com/questions/1812944/how-to-integrate-paypal-with-winform-desktop-application/1812960#1812960 Comment by Yoann. B on How-to integrate Paypal with WinForm Desktop Application Yoann. B 2009-11-28T16:36:10Z 2009-11-28T16:36:10Z Don't want desktop users to be redirected to paypal to process payment. http://stackoverflow.com/questions/1708018/how-to-prevent-module-duplicates-with-mef/1709483#1709483 Comment by Yoann. B on How-To Prevent Module Duplicates with MEF ? Yoann. B 2009-11-16T13:00:43Z 2009-11-16T13:00:43Z I need to prevent duplicates types implementations of IModule being loaded by MEF. Thanks i'll try in this way. http://stackoverflow.com/questions/1689375/design-real-time-product-stock-management Comment by Yoann. B on Design Real-Time Product Stock Management Yoann. B 2009-11-06T18:28:10Z 2009-11-06T18:28:10Z When i say Real-Time, i mean not using Async processing http://stackoverflow.com/questions/1662150/is-using-db4o-for-web-sites-a-judicious-choice/1662198#1662198 Comment by Yoann. B on Is Using Db4o For Web Sites a judicious choice? Yoann. B 2009-11-04T18:48:49Z 2009-11-04T18:48:49Z Moreover i need full text search indexes, i'm planning to use Lucene.NET for that issue and it seems that Db4o support builtin Lucene.NET full text that should be a good point http://stackoverflow.com/questions/1662150/is-using-db4o-for-web-sites-a-judicious-choice/1662198#1662198 Comment by Yoann. B on Is Using Db4o For Web Sites a judicious choice? Yoann. B 2009-11-04T18:46:17Z 2009-11-04T18:46:17Z However, the cons of DB4o is that we can't interact with the &quot;database&quot; out of the application running db4o like Management Studio for SQL Server in order to handle data mistakes by hand ... There is a solution called Object Management Enterprise for Db4o but seems to be not very &quot;smooth&quot; to hand on. So the application must be capable to manage (CRUD) all data by using a backoffice. http://stackoverflow.com/questions/1662150/is-using-db4o-for-web-sites-a-judicious-choice/1662198#1662198 Comment by Yoann. B on Is Using Db4o For Web Sites a judicious choice? Yoann. B 2009-11-02T16:44:40Z 2009-11-02T16:44:40Z According to db4o's documentation, it seems that db4o support &quot;Lazy laoding&quot; as &quot;Activation Depth&quot; and support Lazy queries in order to prevent heavy unwanted ram usage. My web site does'nt handle lot of data. But require high performance to handle huges requests a second. Standard Caching doesn't work for me, i need my data always updated so i can't use caching expiration topology http://stackoverflow.com/questions/1657705/array-constructor-dependency-with-structuremap/1657726#1657726 Comment by Yoann. B on Array Constructor Dependency With StructureMap Yoann. B 2009-11-01T17:32:35Z 2009-11-01T17:32:35Z Ok anyway, how can i inject that with IEnumerable ? http://stackoverflow.com/questions/1652224/how-to-deal-with-multi-criteria-queries-in-3-tier-architecture Comment by Yoann. B on How-To Deal with Multi-Criteria Queries in 3-Tier Architecture Yoann. B 2009-10-30T21:33:07Z 2009-10-30T21:33:07Z Here is a beggining but too &quot;SQL-Dependent&quot; ... <a href="http://www.drewnoakes.com/code/util/Filter.html" rel="nofollow">drewnoakes.com/code/util/Filter.html</a> http://stackoverflow.com/questions/1652224/how-to-deal-with-multi-criteria-queries-in-3-tier-architecture/1652257#1652257 Comment by Yoann. B on How-To Deal with Multi-Criteria Queries in 3-Tier Architecture Yoann. B 2009-10-30T21:11:49Z 2009-10-30T21:11:49Z @ptutt No i can't share the DAL with the client. I think it's not a great architecture design. The client only talk to service layer (business) http://stackoverflow.com/questions/1652224/how-to-deal-with-multi-criteria-queries-in-3-tier-architecture/1652314#1652314 Comment by Yoann. B on How-To Deal with Multi-Criteria Queries in 3-Tier Architecture Yoann. B 2009-10-30T21:09:19Z 2009-10-30T21:09:19Z @Beska I need a generic and abstract way to handle multi criteria queries. But not specifics methods like this : public IList&lt;MyObject&gt; FindSomething(int filter1, string filter2 ...) But maybe a more flexible way with LINQ Expression like : public IList&lt;T&gt; Find(Expression filters[]) I dunno ... http://stackoverflow.com/questions/1652224/how-to-deal-with-multi-criteria-queries-in-3-tier-architecture/1652257#1652257 Comment by Yoann. B on How-To Deal with Multi-Criteria Queries in 3-Tier Architecture Yoann. B 2009-10-30T20:55:29Z 2009-10-30T20:55:29Z How do you handle this ? you pass SQL where clauses to the service method ? My UI tier doesn't know how the DAL works, so i can't pass plain SQL where clauses through my service methods. http://stackoverflow.com/questions/1582563/count-word-occurrences-in-a-text-field-with-linq/1582642#1582642 Comment by Yoann. B on Count word occurrences in a text field with LINQ Yoann. B 2009-10-17T17:34:21Z 2009-10-17T17:34:21Z Timothy &gt; not exactly what i want, i've updated my question, hope it should be more clear ...