score:2
Apparently, I can compile Mono.Cecil for use under the Compact Framework, which will allow me to emit and load assemblies.
score:1
If you want use a Lambda-Expressions on CF you don't need ILASM or System.Reflection.Emit. The C# compiler for CF supports Lamba-Expressions but the CF base libraries does not have the Expressions classes. If you add reference to assembly with correct named (and correct implemented) classes for expressions, you enable Lambda-Expressions.
Thanks for god, there are this assembly already implemented ( http://evain.net/blog/articles/2008/09/22/linq-expression-trees-on-the-compact-framework ) - I use it with Db4O data access and for SqlCE wit LINQ IQueryableToolkit, and it works well.
Source: stackoverflow.com
Related Articles
- Entity Framework 6 Code First Custom Functions
- Linq Expression Trees in Compact Framework
- Avoiding repeated projection code in Entity Framework
- Forcing Entity Framework to not generate NCLOB's when building Linq-to-Sql Code (Model First)
- LINQ Source Code Available
- Entity Framework Code First without app.config
- .NET 4 Code Contracts: "requires unproven: source != null"
- Entity Framework Code First using context in Controller
- many to many mapping in entity framework code first
- How to Create a Run-Time Computed (NotMapped) Value in Entity Framework Code First
- creating Linq to sqlite dbml from DbLinq source code
- Running different code depending on what Net Framework version is installed
- updating data in many-to-many relationship in entity framework in code first existing database
- Loading class with lambda expressions in Compact Framework 3.5 is slow on first load
- Entity Framework Code First String Comparison with Oracle Db
- SQL subquery result in LINQ and Entity Framework Code First
- most efficient Entity Framework Code First method of flattening / projecting parent entity with specific child
- Entity Framework Code First - Get blog posts which have certain tags
- ILASM for Compact Framework?
- How to Query Icollections of Entity Framework Code First Data
- Entity Framework code first - Many to Many - Include conditional
- C# SQL/Linq/Entity Framework calculating column totals for multiple columns from large data source
- Workaround for MethodBase.GetCurrentMethod() on Compact Framework 3.5
- Entity Framework Code First ToList method timing out on SQL Azure
- Entity Framework Insert In Code
- How to make a property unique in Entity Framework Code First
- Entity Framework Code First override onModelCreating() for TPT Inheritance Screwing Up Identity User and Role Models
- How to loop through a child list of objects in Entity Framework 4.1 code first
- source code for LINQ 101 samples
- how to select data by linq in many-to-many relationship in First code Entity framework 5
- Improving O(n^2) algorithm
- How do i obtain foreign table field using string value for fieldname with reflection and entity framework
- Linq select all items where in list with groupby
- LINQ to SQL - Compile error when extending data context with partial class and methods
- Performing an update with LINQ
- C# Linq on a list of dictionaries to filter it
- How do I filter a strongly typed list with List<String> variables
- Get resulting LINQ expression from LINQ Dynamic WHERE
- Assign anonymous in IF-ELSE statements
- Performing filtering and sorting on the original collection
- Linq group by and then get only one of the items
- Linq performance for in-memory collection
- select custom id from same names using Linq
- C# LINQ compound from vs. subquery
- Improving conversion from List to List<Dictionary<string,string>> with Linq
- Linq All on empty collection
- LINQ query to merge multiple rows
- find item inside list of list
- Entity Framework and Case Insensitive String Search
- Grouping troubles