I want to show the names of people who do not have a departamento
The data is:
+----+---------+----------------+ +----+--------------------+
| id | Nombre | idDepartamento | | id | NombreDepartamento |
+----+---------+--------...
My table in DB named SqlSpatialType is as follows:
IDCliente int
Nombre Varchar
GpsLocation Geography
EuclideanaLocation Geometry
My form
and I want to insert records using EntityFrameworK from C #, The problem I have is how to trans...
I have a service developed with WCF , in this service I call a stored procedure , it returns 4 fields: id , id_visita , fecha , observaciones . It may happen that the field id_visita comes null and this...
code to create a bindingList:
using System;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.IO;
using Negocio;
using Entidades;
usin...
I have a view created with Razor with the list template based on a model, the view is fine and it shows in a grid the data of the list, and also has its 3 links (edit datail delete), what I need is that one of those links (or add a fourth link o...
When I work with EF code first, precisely when the tables already created have data and I need to create a new field or delete a new field. EF forces me to delete the data I had in the tables in order to add or remove a new field to a table....
I have a TextBox in which letters are scanned and do a search in Access , the problem I have is that when the keyboard is uppercase it scans the letters in lowercase and vice versa, and at the time of doing the search gives an error...
I have this textbox
<asp:TextBox ID="tbid" runat="server" class="form-control"></asp:TextBox>
form-control is a bootstrap class for the textbox to have the bootstrap look, if I disable the textbox from code using
tbid.Enabled...