Simplest possible sample code for accessing an in-process SQLite database file using LINQ The code does not use a dbml file for the mapping, but an attribute enriched type. (F# script, .Net 4.0, F# 2.0)
6 people like thisPosted: 13 years ago by Dirk Devriendt
This wrapper will handle translating F# quotations into LINQ expressions that AutoMapper can use, enabling AutoMapper to be configured from F# code. You must reference AutoMapper and FSharp.PowerPack.Linq, or include Linq.fsi and Linq.fs from the PowerPack into your project.
10 people like thisPosted: 12 years ago by Joel Mueller
Uses dynamic operator to quickly create XML
3 people like thisPosted: 11 years ago by David Grenier
Expression<Func<'a, 'b>> as expr builder
2 people like thisPosted: 5 years ago by habib sadullaev
A simple expression tree visitor, to inject a lambda inside another lambda parameters.
4 people like thisPosted: 5 years ago by Tuomas Hietanen
A sample that translates simple F# quotations (method calls, property getters) to stnadard C# LINQ expression trees.
7 people like thisPosted: 12 years ago by Tomas Petricek
The snippet implements 'map' and 'init' functions for the 'ObservableCollection' type. These are similar to well-known functions for sequences, but 'map' works in an incremental fashion. When the source collection changes, the resulting collection is updated.
3 people like thisPosted: 12 years ago by Tomas Petricek
F# lambda (quotation) to C# Expression
Posted: 8 years ago by Tuomas Hietanen
Converting F# LINQ queries to SQL: - Basic example of simple group-by - Also if you want to have multiple aggregates (SUM, COUNT, MAX, MIN, AVG, ...) in the same SQL-clause, that is done with groupBy over a constant value.
2 people like thisPosted: 5 years ago by Tuomas Hietanen
Simple helper to ease building xml with XElement and XAttribute in F#
3 people like thisPosted: 3 years ago by Vianney PHILIPPE