Posts by Rafael Lillo • 56 points
5 posts
-
0
votes2
answers219
viewsA: Creating component generating DLL
Is there any way that DLL can only be used together with the project current? There is a business called Strong Name, basically, it will create a hash between to the DLL, so your project is tied to…
-
0
votes1
answer723
viewsA: Get Return of Procedure on Oracle
Missing set size of VARCHAR static void Main(string[] args) { var connection = new OracleConnection(); try { using (var oracleCommand = new OracleCommand("PROC_TESTE", connection) { CommandType =…
-
1
votes1
answer87
viewsA: Automapper with Ioc
You can do it this way static void Main(string[] args) { Mapper.CreateMap<Veiculo, ClienteViewModel>(); Mapper.CreateMap<List<Vigencia>, ClienteViewModel>() .ForMember(x =>…
-
2
votes1
answer475
viewsA: Using dependency injection outside a controller with ninject
When vc makes the kernel. Bind(). To(), Ninject already injects dependency and when you call the class it creates it for you. Example: public class Repository : IRepository { ... } public class…
-
1
votes2
answers178
viewsA: Fetch content from a td from a class
You can use jQuery to do the for only in the element you want $(document).ready(function(){ $("#table_marcas tr td.template").each(function(x,e){ alert($(e).text()); }); }); <script…
javascriptanswered Rafael Lillo 56