LINQ and 3-Tier
See this post from Matt: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1848812&SiteID=1
View ArticleLINQ and 3-Tier
Fabrice MARGUERIE wrote:But that would create a strong dependency between your layers. Something you want to avoid it seems. yes! Thanks! that's all
View ArticleLINQ and 3-Tier
You do, unless your Logic.Customer is a wrapper around DB.Customer. But that would create a strong dependency between your layers. Something you want to avoid it seems.
View ArticleLINQ and 3-Tier
But then I loose the object tracking capabilities, don't I?Because I create a Logic.Customer object from each DB.Customer, and then work with the Logic.Customer in my app.
View ArticleLINQ and 3-Tier
To use the example that David gives, there is no need for LINQ attributes on the Customer class. It can be a standard class with nothing related to LINQ.Only DB.Customers is based on LINQ to SQL.
View ArticleLINQ and 3-Tier
Yes...but to do that, I have to put linq attributes to the customer class....but this lies in the bll
View ArticleLINQ and 3-Tier
If you have a method : List<Customer> DataLayer.GetCustomers() which builds the objects by the results of sql queries... it can instead build the objects by the results of linq queries. The...
View ArticleLINQ and 3-Tier
Hello, I have also a question about this.We have our logic layer. We use the data layer like List<Customer> GetCustomers(); (Customer class is in BLL)Can we use LINQ without putting linq code...
View ArticleLINQ and 3-Tier
The .dbml file is like your typed dataset, the designer creates an entity class that maps your database table and contains relation between tables as well. The code that uses the entity class, the one...
View ArticleLINQ and 3-Tier
We have established coding standards using strongly-typed datasets in our 3-tier model--very close to the model presented at http://msdn2.microsoft.com/en-us/library/aa581771.aspx. We are trying to...
View Article