【发布时间】:2021-02-09 22:14:56
【问题描述】:
我正在使用带有 FluentMappingBuilder 的 linq2db 来映射我的数据库,我想知道是否可以将自定义列映射到我的类。
这是我的查询。
SELECT p.Id,
p.Name,
p.Price,
dbo.FN_DISTANCE_HAVERSINE(a.latitude, a.longitude, 48.135538400663656, 11.551979373610068) AS Distance
FROM Product p
INNER JOIN Category c ON p.IdCategory = c.Id
INNER JOIN Store s ON p.IdStore = s.Id
INNER JOIN Address a ON s.IdAddress = a.Id
WHERE Active = 1
AND CanLoad = 1
ORDER BY distance ASC
我将Distance 添加到我的产品类中,并在我的映射类中设置为非列Property(x => x.DistanceKm).IsNotColumn();
但我不知道如何使用 linq2db 进行此查询。有可能吗?
我还尝试了另一种方法,而不是使用 Sql 函数,而是使用 linq2db 完成所有操作。 并且工作正常...
IQueryable<Product> products = GetQueryable();
products = from p in products
select new Product
{
Id = p.Id,
Name = p.Name,
Price = p.Price,
DistanceKm = DistanceHelper.GetDistanceWithHaversine(productFilter.Latitude, productFilter.Longitude, p.Store.Address.Latitude, p.Store.Address.Longitude)
};
var result = await products.ToListAsync();
但如果我尝试通过DistanceKm 订购Products,我会得到一个例外:
var result = await products.OrderByDescending(p => p.DistanceKm).ToListAsync();
例外
GetDistanceWithHaversine(value(ProductRepository+<>c__DisplayClass3_0).productFilter.Latitude, value(StoreAggregator.Api.Data.Repository.ProductRepository+<>c__DisplayClass3_0).productFilter.Longitude, p.Store.Address.Latitude, p.Store.Address.Longitude)' cannot be converted to SQL.
at LinqToDB.Linq.Builder.ExpressionBuilder.ConvertToSql(IBuildContext context, Expression expression, Boolean unwrap, ColumnDescriptor columnDescriptor, Boolean isPureExpression)
这是 linq2db 的限制,还是我可以使用其中一种方法?
编辑
我的GetDistanceWithHaversine 实现。dbo.FN_DISTANCE_HAVERSINE 函数的作用完全相同,但在 sql server 上。
public static double GetDistanceWithHaversine(double lat1, double lng1, double lat2, double lng2)
{
var R = 6371; // Radius of the earth in km
var dLat = Deg2rad(lat2 - lat1); // deg2rad below
var dLon = Deg2rad(lng2 - lng1);
var a =
Math.Sin(dLat / 2) * Math.Sin(dLat / 2) +
Math.Cos(Deg2rad(lat1)) * Math.Cos(Deg2rad(lat2)) *
Math.Sin(dLon / 2) * Math.Sin(dLon / 2);
var c = 2 * Math.Atan2(Math.Sqrt(a), Math.Sqrt(1 - a));
var d = R * c; // Distance in km
return d;
}
private static double Deg2rad(double deg)
{
return deg * ((Math.PI) / 180);
}
【问题讨论】:
-
显示有问题的
GetDistanceWithHaversine实现。
标签: c# sql-server linq2db