Posts by O Aprendiz • 83 points
4 posts
-
0
votes2
answers339
viewsA: Customize an item within css for a particular view
I had to create selectors for my own class. In the end it was like this: .CampoRealyOnly input[type=text], .CampoRealyOnly textarea, .CampoRealyOnly select { border: 1px solid #888888; left: 298px;…
-
0
votes2
answers339
viewsQ: Customize an item within css for a particular view
I have this view on MVC View @model XXX @{ } <link href="/eTeste/Content/AbaDetailsODM.css" rel="stylesheet" type="text/css" /> <div id="consoleAbaDetalhes"></div> <div…
-
5
votes2
answers109
viewsQ: Questions about Fluent API relationship for EF 5
I have two classes: User > Contains your PK (ID). User > Contains the user ID(FK). Class User.Cs public Usuario() { this.UsuariosP = new List<UsuarioP>(); } public int Id { get; set; }…
-
3
votes1
answer1261
viewsQ: Include Method - MVC - working with data insertion in two tables
I have two classes: User User where Usuario possesses its id (PK) and UsuarioP owns the id (FK) of Usuario. I am working on ASP.NET MVC 4 using Fluent API. Classes are mapped within the project to…