November 19, 2009
Telerik OpenAccess ORM Q3 2009 SP 1 Release Notes (v2009.03.1119)
var ur = os.Extent<
userrole
>().SingleOrDefault(c => c.UserID == id);
var ur = os.Extent<
userrol
>().Where(c => c.UserID == id).SingleOrDefault();
var result = from pr in scope.Extent ()
join c in scope.Extent<
category
>() on pr.CategoryID equals c.CategoryID where c.CategoryName.Length < 8
orderby pr.ProductName
select new { Product = pr.ProductName, Category = c.CategoryName };
var result = from pr in scope.Extent () join c in scope.Extent<
category
>() on pr.CategoryID equals c.CategoryID
orderby pr.ProductName
where c.CategoryName.Length < 8
select new { Product = pr.ProductName, Category = c.CategoryName };
Post your feedback via the Data Access feedback portal or the public forums
See the updates feed
Get your fully functional free copy of Data Access.
Including demos and articles to get you started.
Help us shape our roadmap.