I have a problem with FluentNHibernate so I can use Auto Persistence Model , sorry if I do not spell the words correctly techniques.
This is the structure of my project.
I always used all the entities in the base in the data...
I need to know how I can filter in a model that is an Invoice where I have two fields to pay and another that is paid, I have to do a filter to get the bills that have different amounts than paid to know which of the bills are unpaid.
class Fa...
Hi, I have a query in Laravel 5.5 that brings me what I need with the related data of 2 tables. My query is as follows:
$facturas = ProgramacionPagos::select('*')
->where([
['pagorealizado' , '0'], ['autorizado_c...
I would like to know what the difference is and what is better if I use the Entity Data Model template to generate the database model or use the POCO Reverse Generator template, just as it is better to install the entity framework dependencies f...
Good, basically what I want to generate is a query that returns a list of users, that have as excacto value the result of the difference of two fields.
In other words, I have the user table that has the fields ndias and diasconsumidos.
CUR...
Continuing with the example of Listview show two fields in each row
Visual Studio Community 2015 + SQLite + Entity Framework
The database has 2 fields: ID and ShipType
Class for mapping the database:
namespace ImperialFleet
{
public...
I am working on an application in laravel 5.5 that works with tabs (personal data) and I have the respective table I also have a table communes that is related to the tabs table is to say a one-to-one relationship a tab can have a commune, I hav...
I have the following code:
criterio = session.createCriteria(Tecnico.class)
.add(Restrictions.eq("expediente", usuario))
.add(Restrictions.eq("password", contrasenia))
.createAlias("empresa", "empresa", JoinType.LEFT_OUTER_JOIN)
.setF...
I'm a little confused with these relationships.
I'm doing a game of questions and answers.
In a group | Table | a user makes a publication with a series of questions ((in fact, that user who asks questions can only ask them who made the gr...