Tag:

单声道是否支持SqlDbType结构?

是否可以使用types为“User-Defined Table”的参数调用MS SQL Server存储过程? 我想在Docker上运行一个.NET应用程序,但是我遇到了这个exception: System.ArgumentOutOfRangeException: No mapping exists from SqlDbType Structured to a known DbType. 是否有任何有关Mono开发的路线图,谈到在不久的将来支持结构化SqlDbType?

在安装了Mono的Ubuntu映像的Dockerfile中构build时出错

我有下面的docker文件,我试图用来build立一个Ubuntu的单声道图像。 FROM ubuntu:14.04 MAINTAINER John Smith <John.Smith@gmail.com> RUN sudo apt-get update RUN sudo /bin/bash -l -c apt-get install wget RUN sudo /bin/bash -l -c apt-get http://download.mono-project.com/repo/xamarin.gpg RUN sudo apt-key add xamarin.gpg RUN sudo echo "deb http://download.mono-project.com/repo/debian wheezy main" > /etc/apt/sources.list.d/mono-xamarin.list RUN sudo apt-get update RUN sudo apt-get install mono-complete 当我运行下面的docker build命令… docker build -t="test/mono" . […]

试图将容器移植到ARM

我试图将以下容器移植到ARM。 所以我做了以下 我下载了Dockerfile和entrypoint.sh然后用FROM arm32v7/mono:4.8replace了Dockerfile的第一行,并成功构build了它。 但是当我尝试使用完成的图像时出现以下错误: standard_init_linux.go:178: exec user process caused "no such file or directory" 这是否意味着它找不到entrypoint.sh或者它找不到那些entrypoint.sh试图启动的东西? 任何想法如何debugging呢?