QueryTalk is a lightweight DAL for .NET and SQL Server easy to learn and use.
QueryTalk was developed with a purpose to be simple and efficient DAL for .NET. The developer should write as few lines of code as possible and should not repeat actions that have already been done when the data model in the database was implemented. For that reason, QueryTalk does not require any entity modelling. Furthermore, the storage (entity) classes are created behind the scene and stored in the separate DLL file. So the application code is clean and the developer can focus on real job - on querying.
QueryTalk is a semantic data access layer introducing human-readable instructions:
s.City.WhichHas(d.Most, s.Company)
QueryTalk is also an ORM framework using the mapping data to facilitate data manipulation in your programming code.
QueryTalk is simple. There is no XML settings, no modelling, no contexts. QueryTalk is less code. In most cases, single instructions or even a single-line of code will do the job. QueryTalk is powerful. It offers plenty of options: semantic querying, SQL querying, a mix of both, and CRUD instructions.
Test your queries on the spot, exactly where they are created:
s.Person.Whose(s.Person.Age, 40)
.Test()
.Go();
Use the mapper application (QueryTalker) to map your databases – fast and efficiently. No interference between the mapping code and the programming code. The mapping files are stored as compiled .dll files in your QueryTalk repository.
Entity Framework:
using (var contect = new QueryTalkEntities())
{
var query = context.Person
.Where(a => a.PersonJob
.Where(b => b.Job != null).Any());
}
QueryTalk:
var query = s.Person.WhichHas(s.Job);
MIT