Posts by Jéf Bueno • 67,331 points
1,254 posts
-
4
votes1
answer355
viewsA: doubts when mapping nhibernate
Using Fluent would look like this: public class ExemploMap : ClassMap<ExemploDTO> { public ExemploMap() { Id(x => x.Id); .Length(10) .Not.Nullable(); References(x => x.ServicoDTO);…
-
2
votes1
answer1363
views -
4
votes1
answer540
views -
2
votes0
answers434
viewsQ: Error 501 when connecting with FTP
I have a C# (Windows Forms) application that accesses the company’s FTP to download some files and/or upload. Only, on two specific clients, the application cannot access FTP. It gives the following…