Dapper Extensions is a small library that complements Dapper by adding basic CRUD operations (Get, Insert, Update, Delete) for your POCOs. For more advanced querying scenarios, Dapper Extensions provides a predicate system. The goal of this library is to keep your POCOs pure by not requiring any attributes or base class inheritance.
hello
I'm using Vb.net and MySql, Do predicates work with them?
see my code:
Dim p = Predicates.Field(Of model.empresa)(Function(x) x.nome, [Operator].Eq, "alex") Dim cn As New MySqlConnection(ConnectionString)
But i get error.
thanks