User Yoann. B - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T15:11:29Zhttp://stackoverflow.com/feeds/user/50974http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1900002/secure-access-between-wcf-web-services-and-flash-web-site0Secure Access between WCF Web Services and Flash Web SiteYoann. B2009-12-14T10:00:21Z2009-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-net0SOA Architecture Real-World Samples with .NETYoann. B2009-12-08T02:26:08Z2009-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-applications0Best Approach to Handle User Rights in Desktop ApplicationsYoann. B2009-11-27T07:24:45Z2009-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-namespace1EntityFramework or LinqToSql Entity NamespaceYoann. B2009-11-29T22:27:03Z2009-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-build1TeamCity vs Team BuildYoann. B2009-12-05T11:19:28Z2009-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-ready4Is NHibernate.Linq 1.0 GA Provider Production ReadyYoann. B2009-12-04T07:41:27Z2009-12-04T09:08:09Z
<p>Is NHibernate.Linq 1.0 GA Provider Production Ready ?</p>
http://stackoverflow.com/questions/1845688/fluent-entity-framework-mapping0Fluent Entity Framework MappingYoann. B2009-12-04T08:46:59Z2009-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-wcf0Site-To-Site Data synchronization Over WCFYoann. B2009-12-01T19:19:32Z2009-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-inheritance0AutoMapper With Generic Type InheritanceYoann. B2009-12-01T04:11:42Z2009-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<TPk>
{
TPk Id { get; }
}
public interface ICustomer : IBaseEntity<int>
{
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<CustomerDTO, ICustomer>();
Mapper.CreateMap<ICustomer, CustomerDTO>();
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<CustomerDTO, ICustomer>(customer);
var newCustomer = _customerService.CreateCustomer(originalMapped);
var newMapped = Mapper.DynamicMap<ICustomer, CustomerDTO>(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#18254910Answer by Yoann. B for AutoMapper With Generic Type InheritanceYoann. B2009-12-01T11:10:44Z2009-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<TPk>
{
TPk Id { get; get; }
}
</code></pre>
http://stackoverflow.com/questions/1819415/application-services-vs-wcf-services0Application Services Vs WCF ServicesYoann. B2009-11-30T12:06:13Z2009-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 <=> Entites transformation logic ?</p>
http://stackoverflow.com/questions/1817092/best-approach-to-handle-data-concurrency-in-3-tier-application0Best Approach to handle Data Concurrency In 3-Tier ApplicationYoann. B2009-11-29T23:05:56Z2009-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-calls1How-To Secure Desktop Application To Web Service CallsYoann. B2009-11-28T17:19:07Z2009-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-application0How-to integrate Paypal with WinForm Desktop ApplicationYoann. B2009-11-28T16:29:00Z2009-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-containers10Enterprise Library Unity vs Other IoC ContainersYoann. B2009-01-04T21:00:30Z2009-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-mvc0Mixed Forms and LDAP authentication with auto-registration with ASP.NET MVC.Yoann. B2009-11-21T08:08:54Z2009-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-management0Design Real-Time Product Stock ManagementYoann. B2009-11-06T18:19:46Z2009-11-19T19:23:10Z
<p>Hi,</p>
<p>I need to design a real-time product stock management engine (C# & 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-nhibernate1Configuration SysCache2 With Fluent NHibernateYoann. B2009-10-27T13:19:05Z2009-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 => c.UseQueryCache())
.Dialect<FullTextSearchEnabledMsSql2008Dialect>()
.UseReflectionOptimizer())
.Mappings(m => m.FluentMappings.AddFromAssembly(Assembly.GetExecutingAssembly()))
.BuildSessionFactory();
}
</code></pre>
http://stackoverflow.com/questions/1708018/how-to-prevent-module-duplicates-with-mef2How-To Prevent Module Duplicates with MEF ?Yoann. B2009-11-10T13:37:17Z2009-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<IModule> Modules { get; private set; }
public void BuildUp()
{
Modules = new List<IModule>();
<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-messagequeue3How-To Mock MSMQ MessageQueueYoann. B2009-10-26T22:16:51Z2009-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-architecture3How-To Deal with Multi-Criteria Queries in 3-Tier ArchitectureYoann. B2009-10-30T20:46:48Z2009-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-structuremap1Array Constructor Dependency With StructureMapYoann. B2009-11-01T17:18:03Z2009-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<IBootstrapperTask>().TheDefaultIsConcreteType<StartTasks>();
ForRequestedType<ITask>().TheDefaultIsConcreteType<FirstTask>();
ForRequestedType<ITask>().AddConcreteType<SecondTask>();
ForRequestedType<ITask>().AddConcreteType<ThirdTask>();
}
}
</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-choice3Is Using Db4o For Web Sites a judicious choice?Yoann. B2009-11-02T16:01:09Z2009-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-1Answer by Yoann. B for What's your most controversial programming opinion?Yoann. B2009-11-01T18:17:33Z2009-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-mvc0SharedCache vs Memcached For NHibernate With ASP.NET MVCYoann. B2009-10-28T02:53:16Z2009-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-comparisons2Memcached .NET Clients ComparisonsYoann. B2009-10-22T18:52:55Z2009-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-linq0Count word occurrences in a text field with LINQYoann. B2009-10-17T16:18:12Z2009-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 < 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-mvc1LoginBox in MasterPage With ASP.NET MVCYoann. B2009-10-14T13:08:31Z2009-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><% 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-ssl0IIS 7 Reverse Proxy With SSL ?Yoann. B2009-10-01T16:02:23Z2009-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-build2How-to Keep Projects Structure with TFS Team BuildYoann. B2009-03-25T12:03:49Z2009-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#1864237Comment by Yoann. B on SOA Architecture Real-World Samples with .NETYoann. B2009-12-08T10:42:37Z2009-12-08T10:42:37ZI'm more looking for source code samples, articles are useful to understand principles but i need some code to begin withhttp://stackoverflow.com/questions/1817092/best-approach-to-handle-data-concurrency-in-3-tier-application/1817125#1817125Comment by Yoann. B on Best Approach to handle Data Concurrency In 3-Tier ApplicationYoann. B2009-11-29T23:26:01Z2009-11-29T23:26:01ZDoes 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-applicationComment by Yoann. B on Best Approach to handle Data Concurrency In 3-Tier ApplicationYoann. B2009-11-29T23:22:32Z2009-11-29T23:22:32ZI mean data concistency, i want to find the best approach in order to prevent already updated data by someone being updated by another userhttp://stackoverflow.com/questions/1812944/how-to-integrate-paypal-with-winform-desktop-application/1812960#1812960Comment by Yoann. B on How-to integrate Paypal with WinForm Desktop ApplicationYoann. B2009-11-28T16:36:10Z2009-11-28T16:36:10ZDon'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#1709483Comment by Yoann. B on How-To Prevent Module Duplicates with MEF ?Yoann. B2009-11-16T13:00:43Z2009-11-16T13:00:43ZI 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-managementComment by Yoann. B on Design Real-Time Product Stock ManagementYoann. B2009-11-06T18:28:10Z2009-11-06T18:28:10ZWhen i say Real-Time, i mean not using Async processinghttp://stackoverflow.com/questions/1662150/is-using-db4o-for-web-sites-a-judicious-choice/1662198#1662198Comment by Yoann. B on Is Using Db4o For Web Sites a judicious choice?Yoann. B2009-11-04T18:48:49Z2009-11-04T18:48:49ZMoreover 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 pointhttp://stackoverflow.com/questions/1662150/is-using-db4o-for-web-sites-a-judicious-choice/1662198#1662198Comment by Yoann. B on Is Using Db4o For Web Sites a judicious choice?Yoann. B2009-11-04T18:46:17Z2009-11-04T18:46:17ZHowever, the cons of DB4o is that we can't interact with the "database" 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 "smooth" 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#1662198Comment by Yoann. B on Is Using Db4o For Web Sites a judicious choice?Yoann. B2009-11-02T16:44:40Z2009-11-02T16:44:40ZAccording to db4o's documentation, it seems that db4o support "Lazy laoding" as "Activation Depth" 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 topologyhttp://stackoverflow.com/questions/1657705/array-constructor-dependency-with-structuremap/1657726#1657726Comment by Yoann. B on Array Constructor Dependency With StructureMapYoann. B2009-11-01T17:32:35Z2009-11-01T17:32:35ZOk anyway, how can i inject that with IEnumerable ?http://stackoverflow.com/questions/1652224/how-to-deal-with-multi-criteria-queries-in-3-tier-architectureComment by Yoann. B on How-To Deal with Multi-Criteria Queries in 3-Tier ArchitectureYoann. B2009-10-30T21:33:07Z2009-10-30T21:33:07ZHere is a beggining but too "SQL-Dependent" ...
<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#1652257Comment by Yoann. B on How-To Deal with Multi-Criteria Queries in 3-Tier ArchitectureYoann. B2009-10-30T21:11:49Z2009-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#1652314Comment by Yoann. B on How-To Deal with Multi-Criteria Queries in 3-Tier ArchitectureYoann. B2009-10-30T21:09:19Z2009-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<MyObject> FindSomething(int filter1, string filter2 ...)
But maybe a more flexible way with LINQ Expression like :
public IList<T> Find(Expression filters[])
I dunno ...http://stackoverflow.com/questions/1652224/how-to-deal-with-multi-criteria-queries-in-3-tier-architecture/1652257#1652257Comment by Yoann. B on How-To Deal with Multi-Criteria Queries in 3-Tier ArchitectureYoann. B2009-10-30T20:55:29Z2009-10-30T20:55:29ZHow 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#1582642Comment by Yoann. B on Count word occurrences in a text field with LINQYoann. B2009-10-17T17:34:21Z2009-10-17T17:34:21ZTimothy > not exactly what i want, i've updated my question, hope it should be more clear ...