gpt4 book ai didi

.net - 使用 F# 查询 Entity Framework 的示例

转载 作者:行者123 更新时间:2023-12-04 15:16:52 24 4
gpt4 key购买 nike

我在 Google 上四处寻找有关使用 F# 查询实体数据源的示例或教程。

老实说,我没有找到太多。你们有没有运气?

最佳答案

以下是我能够从我在此 blog 上找到的内容拼凑起来的示例

open Microsoft.FSharp.Linq.QuotationEvaluation
open Microsoft.FSharp.Linq

let IsPermited (serviceName:string) =
//Instantiate the Entity
let data = new BusModelContainer()

//Build your query
let services = Query.query <@ seq{ for service in data.ServiceSet do
service.Name.Equals(serviceName) && service.IsEnabled then
yield service } @>
if Seq.is_empty services then
false
else
true

这是博客中的代码,它向我展示了如何从实体中进行选择
  let db = new FSharpSampleDB(connString)  

Query.query <@ seq { for c in db.Customers do
if id = c.CustomerId then
yield (new Customer(c.CustomerId, c.Name, c.Balance))}
|> Seq.hd @> :> ICustomer

关于.net - 使用 F# 查询 Entity Framework 的示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/483900/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com