由买买提看人间百态

topics

全部话题 - 话题: int32
1 2 下页 末页 (共2页)
w****f
发帖数: 684
1
来自主题: Computation版 - C++: int = int32?
什么系统用到int32? int64?
w****f
发帖数: 684
2
来自主题: Computation版 - C++: int = int32?
什么系统用到int32? int64?
A**l
发帖数: 2650
3
来自主题: Reunion版 - 晕,160网站硬盘满了。。。
【 以下文字转载自 Visa 讨论区 】
发信人: Aawl (宝宝蛋-湾野分舵~), 信区: Visa
标 题: 晕,160网站硬盘满了。。。
发信站: BBS 未名空间站 (Sat Sep 7 23:42:22 2013, 美东)
老丈人说有个信息错了,刚才去改,结果。。。
There is not enough space on the disk.
哎,是不是要等周一了。。。已经预约了下周三面签。。。郁闷ing。。。
Server Error in '/QotW' Application.
There is not enough space on the disk.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception ... 阅读全帖
A**l
发帖数: 2650
4
来自主题: Visa版 - 晕,160网站硬盘满了。。。
老丈人说有个信息错了,刚才去改,结果。。。
There is not enough space on the disk.
哎,是不是要等周一了。。。已经预约了下周三面签。。。郁闷ing。。。
Server Error in '/QotW' Application.
There is not enough space on the disk.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.IO.IOException: There is not enough space on the
disk.
Source Error:
An unhandled exception was generate... 阅读全帖
w**2
发帖数: 724
5
请问@6是什么意思?
我用ssms打开database看了,一切正常。
求救,大谢!
Unhandled Exception: System.Data.Entity.Infrastructure.DbUpdateException: An
error occurred while up
dating the entries. See the inner exception for details. ---> System.Data.
UpdateException: An error
occurred while updating the entries. See the inner exception for details. --
-> System.Data.SqlClient
.SqlException: The incoming tabular data stream (TDS) remote procedure call
(RPC) protocol stream is
incorrect. Parameter 9 ("@6"): The supplied value is... 阅读全帖
l*******r
发帖数: 1
6
来自主题: Programming版 - 紧急求助,C语言面试题
下面的modString() 函数是干什么的?
有什么问题?
如何改正?
#include
#include
#include
#include
#include
typedef int int32;
typedef char int8;
void xorStringRounds(int8 *output, int8 *pbDataOne, const int8 *pbDataTwo
, int32 length)
{
int32 i = 0;
for(i=0; i {
output[i] = (int8)(pbDataOne[i] ^ pbDataTwo[i]);
}
return;
}
void itoa( int32 num, int8 *alpha, int32 radix )
{
if( radix == 10 )
{
sprintf(alpha,
t*****9
发帖数: 569
7
来自主题: JobHunting版 - 问个google面试题的最佳解法
用动态规划如何?
class FindMinWindow
{
private static readonly int[] A = { 1,1,1,1,2,1,1,1,1,3 };
private static readonly int[] Q = { 1,1,1,1,3 };

public static Point FindWindow(int startA, int startQ, bool
firstCall)
{
if (Q.Length <= startQ) return new Point(startA, 0);
if (A.Length <= startA) return new Point(startA, Int32.MaxValue);
List valueList = FindValue(startA, Q[startQ]);
i... 阅读全帖
P********e
发帖数: 2610
8
来自主题: Programming版 - 一个函数指针的问题
程序写怎么好,还问这种问题?
template
Logical Allocate_2DArray(Int32 lWidth, Int32 lHeight, T**& pArray2D)

用Allocate_2DArray函数分配空间,在函数内部,pArray2D一直没问题,可是返回的
pCostMatrix确是NULL,有什么方法可以解决问题?多谢。
double** pCostMatrix = NULL;
bSuccess = Allocate_2DArray(100, 100, pCostMatrix);
template
Logical Allocate_2DArray(Int32 lWidth, Int32 lHeight, T** pArray2D)
{
bool bSuccess = true;
pArray2D = NULL;
try {
pArray2D = new T*[lWidth];
}
catch(...) {
IMSMessageAlert("Insufficient m

发帖数: 1
9
在runtime/proc.go裡面有很多lock(&sched.lock),
例如把goroutine放到global runq裡面就需要lock
func goschedImpl(gp *g) {
status := readgstatus(gp)
if status&^_Gscan != _Grunning {
dumpgstatus(gp)
throw("bad g status")
}
casgstatus(gp, _Grunning, _Grunnable)
dropg()
lock(&sched.lock)
globrunqput(gp)
unlock(&sched.lock)
schedule()
}
sched是runtime2.go裡面的一個全局變量
var (
allglen uintptr
allm *m
... 阅读全帖

发帖数: 1
10
在runtime/proc.go裡面有很多lock(&sched.lock),
例如把goroutine放到global runq裡面就需要lock
func goschedImpl(gp *g) {
status := readgstatus(gp)
if status&^_Gscan != _Grunning {
dumpgstatus(gp)
throw("bad g status")
}
casgstatus(gp, _Grunning, _Grunnable)
dropg()
lock(&sched.lock)
globrunqput(gp)
unlock(&sched.lock)
schedule()
}
sched是runtime2.go裡面的一個全局變量
var (
allglen uintptr
allm *m
... 阅读全帖
m****e
发帖数: 37
11
来自主题: Programming版 - 一个函数指针的问题
用Allocate_2DArray函数分配空间,在函数内部,pArray2D一直没问题,可是返回的
pCostMatrix确是NULL,有什么方法可以解决问题?多谢。
double** pCostMatrix = NULL;
bSuccess = Allocate_2DArray(100, 100, pCostMatrix);
template
Logical Allocate_2DArray(Int32 lWidth, Int32 lHeight, T** pArray2D)
{
bool bSuccess = true;
pArray2D = NULL;
try {
pArray2D = new T*[lWidth];
}
catch(...) {
IMSMessageAlert("Insufficient memory ");
}
bSuccess = (pArray2D != NULL);
if(bSuccess) {
for(Int32 lWidthIndex = 0; lWidthIndex <
l*****d
发帖数: 359
12
来自主题: Programming版 - 什么时候写程序要注意这个问题?
first, you should know a 64-bit int has much larger range available than than 32-
bit int, right?
This kind of usage for portability. for example in a machine when 'int' is
4bytes and 'long' is 8bytes:
typedef int Int32
typedef long Int64
use Int32 and Int64 in your program.
When porting your program to a difference machine when 'int' is 8bytes, but
'short' is 4 bytes, you can just change the type define:
typedef short Int32
typedef int Int64
and you don't need to change anything in your program
j******o
发帖数: 35
13
来自主题: Programming版 - C 中的typedef 一问
友好的typedef
C语言允许我们自己定义新的数据类型,其语法很简单,例如:
typedef int INT32;
INT32 a; //相当于int a
INT32 *p; //相当于int *p
可以看出,如果想用一个新的名字XXX代表一种数据类型,只要声明一个这种数
据类型的变量,变量名是XXX,并在语句的最前面加上“typedef”关键字即可。
例如:
我们想建立String数据类型,它其实是char *,
第一步,声明一个char*变量String:
char* String;
第二步,加上typedef:
typedef char *String;
这样,从现在开始我们就可以用String表示char*,例如:
String fileName;
int main(int argc, String argv[]){}
在使用typedef的过程中要注意两点:
J*****n
发帖数: 4859
14
来自主题: Programming版 - about layout of List in C#
I have a class and its derived class
[Serializable(), StructLayout(LayoutKind.Sequential)]
class A{DateTime i}
[Serializable(), StructLayout(LayoutKind.Sequential)]
class B : A {Int32 j}
List p = new List();
Now, I add three element in the p and then serilize p into a binary file
called out.bin.
Now, I would get the third element in the p from the out.bin without reading
the first two elements.
using (BinaryReader reader = new BinaryReader(File.Open("out.bin", FileMode.
Open)))
{
Int32 len... 阅读全帖
y****y
发帖数: 2
15
来自主题: JobHunting版 - 微软拒信 + 面经
我们组的老板还蛮有意思的,推荐我们每半年就出去面试一次,见一下世面。的确啊,
面了才知道LeetCode 的重要性,面试之前只做了二十几道,当然啦,找第一份工作那
会儿CC150 还是完完整整写代码写过一轮,C++ Premier的。
个人的背景是工程好学校一般工程专业(不喜欢用牛这个词),两年工作经验。半年前
尝试过Wealthfront 和 braintree,都没有怎么搭理我,通过论坛认识一位热心的朋友
,大概看我背景相符,直接内推到了HM,很是感激,然后就面试了。
初面一小时,是team lead,聊聊背景,兴趣爱好半小时,剩下半小时写程序。早已经
准备好了VS,就写呗。题目很简单,输入三个小数,判断三角形类型。在最好的IDE 的
帮助下,和最好的IM Lync in Web 的帮助下,很快写好了。第三天就安排了下周五
onsite。
onsite四轮,第一轮讨论设计题,设计car pooling,前端没细说,中间件是Web API,
然后Car Pool 要用动态规划等优化方法来设定最短距离,最佳资源搭配,没有写代码
,但写了方程。代码写了简单的class 是怎么设计,其中我... 阅读全帖

发帖数: 1
16
来自主题: JobHunting版 - 贡献一个最近电面题目
static int[] findSub(int[] arr)
{
int[] result =new int[2];
int s=-1, e=-1,min=Int32.MaxValue,max=Int32.MinValue;
for (int i = 0; i < arr.Length-1; i++)
{
if (arr[i] > arr[i + 1])
{
s = i + 1;
break;
}
}
for (int i = arr.Length - 1;i>0; i--)
{
if (arr[i - 1] > arr[i])
{
... 阅读全帖
z*********n
发帖数: 1451
17
来自主题: JobHunting版 - 来讨教个面试题

int32?
那简单了,不用排序,直接建个表查表就行了,也就1G额外空间--处理3T数据,开了1G
空间,怎么说都不过份吧?
int32也就只能表示4G个unique的数,一个数据集直接开4G bit(500M bytes)的空间
,扫一遍,用第i bit表示i+INT_MIN这个int在数据集中存在与否。也就是用500M空间
表示了1T数据,而且还能O(1)时间查询一个整数存在与否。
懒得继续码字了,这个字典都给建好了,剩下的该怎么做应该不用多废话了吧。
c***d
发帖数: 26
18
都5天了,今天还不行啊。
是不是这个错误?
Server Error in '/QotW' Application.
Invalid operation. The connection is closed.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.InvalidOperationException: Invalid operation. The
connection is closed.
Source Error:
Line 806: cmd.Parameters.Add(new OracleParameter("SESSIONID",
sessionID... 阅读全帖
c**t
发帖数: 2744
19
来自主题: DotNet版 - nHibernate mapping question
It's mapping issue:
WARN:
System.IndexOutOfRangeException: Unable to find specified column in result
set
at Oracle.DataAccess.Client.OracleDataReader.GetOrdinal(String name)
at NHibernate.Type.NullableType.NullSafeGet(IDataReader rs, String name)
at NHibernate.Type.NullableType.NullSafeGet(IDataReader rs, String[]
names, ISessionImplementor session, Object owner)
at NHibernate.Type.ManyToOneType.Hydrate(IDataReader rs, String[] names,
ISessionImplementor session, Object owner)
at ... 阅读全帖
t*******l
发帖数: 3662
20
来自主题: Programming版 - How to detect overflow in C?
if your platform supports 64-bit integer,
and you only use int32 to store some final results, maybe
you can use your 64-bit int to do the calculation, and
then right-shifted 32 bit and check if it is zero before
assigning the value to your int32.
n********5
发帖数: 323
21
来自主题: Programming版 - C 中的typedef 一问
为什么下面不能编译通过???
typedef int int32;
int main(){
unsigned int32 j =10;
}
p*****w
发帖数: 429
22
来自主题: Programming版 - C问题,被64bit iPhone搞晕了
这样可以自己定义吗
?
#ifndef int32
#if sizeof(long)==4
#define int32 long
#endif
#if sizeof(int)==4
#endif
d****n
发帖数: 1637
23
来自主题: Programming版 - 为什么大家不喜欢golang的switch?
switch is fine.
not using switch is only MY choice.
Most functions return very few types of known errors.(one or two)
one is the best or two.
for an example, strconv.ParseInt
if err== strconv.ErrSyntax {
// tell user format wrong
return
}
if err == strconv.ErrRange{
//maybe panic cause you system can not handle bigger than int32
}
it doesn't matter using a switch or if.
error is not C pointer NULL, which doesn't tell any thing.
error is not exception, which you always don't expect it valu... 阅读全帖
m**********r
发帖数: 214
24
如果考虑到乘法溢出,乘法不能取代and.
你们可以自己编程试试。
举例:在int32下,INT_MIN(0x80000000)乘上任何非(-1,0,1)值得到的值都为0.
p*u
发帖数: 136
25
来自主题: JobHunting版 - 要去google onsite的同学们
感觉这个应该是一个偏工程性的一个题目吧,我就比较少往算法方向靠了。
目前一个初步的想法是:
1,假设题中说的number是int32范围内的。那么这些数可以分为2^m个区间,每个区间
的数值范围为2^(32-m)。
2,这样可以把整个sequence写入这2^m个区间,每个区间用一个文件来保存。同时记录
下来每个区间中数的个数,然后再通过整个sequence中数的个数,来推断中位数是在哪
一个区间的。
3,在一个区间中,数值范围为2^(32-m)的。这样问题就成了在这个区间内部,找第K大
的数。把这个文件中的每一个数,线性的扫描一遍,记录在每一个数值上的个数。最后
再找出这个第K大的数,也就是最后要求的中位数。
第2步中,m的值可以根据机器的内存大小和IO速度,来进行选择,得到一个平衡点就行
了。
第2步中,在写文件的时候,不用每读一个数就写入相应的文件。可以做一个缓存,也
就是积累到一定的数量之后再一起写入文件。这样可以节省频繁写文件的开销。

memory
c***2
发帖数: 838
26
来自主题: JobHunting版 - One Phone Interview Problem
Let’s first simplify the problem:
1) Assume the elements of both sequences contain only 26 upper case letters
(A..Z)
2) Assume both sequences don't have duplicate elements,
for example, "AABBC" is not allowed
With these in mind, it will be quite easy:
1) Map each sequence to a unsigned int32 (lower 26 bits)
seq1 = "ABCDEFG",
maps/hashes to b1= (000000) 00000000000000000001111111
seq2 = "DBCAPFG",
maps/hashes to b2=(000000) 00000000001000000001101111
2) c=b1&b2
3) Find the longest
z****o
发帖数: 78
27
来自主题: JobHunting版 - 刚看到的一道google面试题
要不就二分吧.
每次猜一个数字d, 用 O(n+m)的时间查到d的rank, 比较是不是比k大,然后继续猜.
若是 int32的话复杂度就是 32*O(n+m) = O(n+m)了的.
l*****v
发帖数: 498
28
来自主题: JobHunting版 - 遇到了同胞interviewer
我刚出道的时候,遇到一个中国大姐特别nice,还用中文给我面试。我第一眼看到她的
时候就觉得太会比较和蔼。
一年多前面google遇到一格中国小帅哥,也是非常nice,结果第二个人也是个中国人3
,40岁的中年萎缩男,他刚走进来的时候我就觉得不对,具体问题我已经忘了,不过其
中的一格小问题是用几个数字做key,我说可个给各个数字加权比如数字a,b,c,d,e,f,g
,h. Key = a*16^7+b*16^6+...+h*16^0。他说这样太大了会超出Int32的range,有没有
其他方法,想了半天我说是不是把32bit分成8分,每一分分给一个数,他说对。丫真是
个SB,这不就是加权么。
整个interview过程非常的awful,后来的15分钟人都有点激动,说话音量大的就像吵架
。我出道也好几年了,从来没和人在interview的时候吵起来,每想到第一次就发生在
同胞身上
s********k
发帖数: 6180
29
来自主题: JobHunting版 - 请问一个little endian 系统的问题
系统是little endian, 定义一个Usigned int 32, 然后bit shift >>1.这个操作还
是除法(/2)吧,而不是把LSB往MSB移,从而导致变成(*2)?
同样 如果做强制类型转换,比如定义一个Usigned int32 a = 0x00ff
那么(uint16) a = 0xff?而不是0x00吧
有点糊涂,大侠指教下
u****u
发帖数: 229
30
来自主题: JobHunting版 - 请问一个little endian 系统的问题
1) 移位操作和endianess没有一点关系.
2) unsigned int32 a=0x000000ff, unsigned int16 b=0x00ff.和endianess没有一点
关系.
3) 为什么我们说C语言不好?问题就是在于有太多的类似的概念不清的新手上来就用C.
g*****e
发帖数: 282
31
我很好奇用什么数据结构来存储和更新当前的有效entry。很久之前做过类似的,fb的
题。返回过去n小时内(n<48)内访问最多的ip。只需要描述,不coding。
我给出的解法是同时维护一个queue(按时间顺序存储当前所有有效entry),max
priority queue(快速求top n)和一个hash function(把queue里的值map到priority
queue的node)。因为ip addr其实就是int32,开个hashtable内存勉强吃得消。如果
是url之类的entry似乎更expensive(转成短url?)。欢迎探讨。
c******a
发帖数: 789
32
来自主题: JobHunting版 - a家电面。。
你说的是bitset吧?电话号码有10位,int32不够, 最少要扫3个pass。
还是trie最好。
r*****e
发帖数: 792
33
来自主题: JobHunting版 - G的offer只有5天考虑时间吗?
先上个F的题吧:
第一个人,coding:
2sum,给了sort后2个ptr的解法,问还能更快吗?那就hash吧,但是
用了unordered_map,又问有别的container吗,才反映过来用hashset就够了。
然后是计算a^b%c, 假设a,b,c都很大,但都是int32.过程中因为他先提到了
prime number,以为是要计算prime,于是后悔好长时间没有看那个什么sieve的
算法了,导致有点精神不集中。回过神来以后做出来了,就是二分,但是
有个地方没注意temp结果应该用int64存一下,一再追问下答出来了。整体这轮
感觉还不错。说个题外话,面试的是个从google跳过去的胖子,好像是个东欧
人,在写题目的时候挺个大肚子,吭哧吭哧的,看得我想笑。
d****n
发帖数: 233
34
来自主题: JobHunting版 - 问一道题(6)
void MinimumWindowCoverInOrder(int[] A, int[] B, out int start, out int min)
{
Dictionary> bPosInAMap = new Dictionary>(
);
Queue[] bPosInA = new Queue[B.Length];
start = -1;
min = Int32.MaxValue;
for (int i = 0; i < B.Length; ++i) {
if (!bPosInAMap.ContainsKey(B[i]))
bPosInAMap.Add(B[i], new Queue());
}
for (int i = 0; i < A.Length; ++i) {
if (bPosInAMap.ContainsKey(A[i]))
bPosInAMa... 阅读全帖
q*****w
发帖数: 62
35
来自主题: JobHunting版 - 一道大数据题
在glassdoor上facebook版上看的的。
Given 10,000 servers containing a Billion integers each how would you find
how to find the median?
1. 用2 heap? 全部数走这个two heap内存消耗太大吧。
2. 用类似 find median of two sorted array 方法?那每台机都要把全部数放到内存
去。每台机都是2^32*4, 也就是4GB内存(假设int32)。感觉消耗太大。
3. bucket sort将所有server的所有数都放到master的bucket中去,这样只要master开
一个4G的内存就好了。而且可以并行。锁的粒度可以到bucket。
大家怎么认为?
q*****w
发帖数: 62
36
来自主题: JobHunting版 - 一道大数据题
在glassdoor上facebook版上看的的。
Given 10,000 servers containing a Billion integers each how would you find
how to find the median?
1. 用2 heap? 全部数走这个two heap内存消耗太大吧。
2. 用类似 find median of two sorted array 方法?那每台机都要把全部数放到内存
去。每台机都是2^32*4, 也就是4GB内存(假设int32)。感觉消耗太大。
3. bucket sort将所有server的所有数都放到master的bucket中去,这样只要master开
一个4G的内存就好了。而且可以并行。锁的粒度可以到bucket。
大家怎么认为?
y****9
发帖数: 252
37
来自主题: JobHunting版 - HackerRank 和 C#
今天抽空去HackerRank练了一下,有几点看法,想和大家分享一下。
1. HackerRank 的 输入界面 是尽量模仿IDE 的,在Web app 开发上值得赞扬,但是不
要期望太多。比如namespace 是没有提示的。到底是System.LINQ 还是 System.Linq
我们是记不住的,如果是这样的话,准备一份模板吧。
2. VS大法好,但是到了别的地方就不一定了,Linq 不要用太多。我就测试过,同样的
代码。FirstLine.Split().Select(s => Int32.Parse(s)).ToArray() 的performance
就是会慢那么一点点的。
3. HR吓唬我说复制粘贴是被监控的,我还真的打开了developer tools 来看network,
除了定期保存,没看到啥,我就不信它还记住每个keydown。如果真的担心的话,就在
VS打好了,敲上去,不担心的话,就直接复制吧。网页版的IDE 实在靠不住,换行的
incline 都是乱来的。
4. 这是最关键的问题,用C# 真的是吃亏的,我就碰到一题需要用到阶乘的,额,我想
到的算法就一定要用。... 阅读全帖
A*******e
发帖数: 2419
38
1534236469,倒过来就出现int32溢出,怎么测试预期结果是0?
k***a
发帖数: 1199
39
来自主题: JobHunting版 - fb电面面经
corner case不多吧,假定int32,最多到billion, 读出三位数,用billion,million,
thousand拼起来就行了
H********g
发帖数: 43926
40
Int32 -- (-2,147,483,648 to +2,147,483,647) 如果存0.1分的话是正负2千万元
Int64 -- (-9,223,372,036,854,775,808 to +9,223,372,036,854,775,807) 如果存0.
1分的话是正负9千万亿元,可以精确到0.1分。对于国家银行来说应该够用了吧?
双精度浮点数大概有16位十进制有效数字:the total precision is therefore 53
bits (approximately 16 decimal digits, 53 log10(2) ≈ 15.955),所以不如用
Int64有效率。
a******g
发帖数: 320
41
【 以下文字转载自 Programming 讨论区,原文如下 】
发信人: alexwang (alex), 信区: Programming
标 题: How to detect overflow in C?
发信站: Unknown Space - 未名空间 (Wed Jun 8 16:58:45 2005) WWW-POST
Overflow like: Try to use an int32 type to represent a 64-bit integer. Is
there any command or easy way to judge this in C?
Thanks a lot!
Xuan
u****u
发帖数: 229
42
来自主题: CS版 - 请教一个好的算法
写了一个,请大家指正.没有编译过.
void GetPair(void)
{
int32 Data[300];
int index[30];
int i,j;
for (i=0;i<30;i++)
for (j=0;j<30;j++)
index[j]+=(data[i]>>j)&1;
for (i=0;i<30;i++)
for (j=i;j<30;i++)
if (index[i]+index[j]>50)
printf("%d %dn",i,j);
}
m****t
发帖数: 2329
43
来自主题: CS版 - 请教一个好的算法
为啥是 int32型
P********s
发帖数: 15
44
Here is the code snippet ( managed C++)
...
Int32 nTemp = 10;
String * pMsg = String::Format("Display an integer here: {0}", nTemp);
...
I got an error message when tried to compile the program:
error C2665: 'System::String::Format' : none of the 5 overloads can convert pa
rameter 2 from type 'int'
Am I missing anything here? Thanx in advance.
WB
发帖数: 170
45
在2个edit之间拖动选好的文本?vc可以?vs好像不行?
int32。parse()能够解析带千分号的数字吗?
如何对数字进行千分号的格式化?
WB
发帖数: 170
46
来自主题: DotNet版 - how to conver 0xfffa to int?
itried int.pasrse(),
but exception.
use convert.int32 is the same error?
how to covert hex to decimal?
WB
发帖数: 170
47
i use float when i writeln 1.27700 but alway dispalyed as 1.27
can i shw all the last digit of zero?
if i want to format a float with x.00 only 2 how to format?
F2, but not work on a float is 2.000.
after format, use stirng to show it, it show 2 not 2.00.
how to show int as 123,1156,221.00, with ','
should i choosDecimal type instead of int32?
i**p
发帖数: 902
48
来自主题: DotNet版 - OleDbDataReader
you are not cute this time.
[InvalidCastException: Unable to cast object of type 'System.Int32' to type
'System.String'.]
dataReader["categoryID"].ToString() works.
w*s
发帖数: 7227
49
1. in F:charp, i have my c# application project, and a DB file called db5.
mdx
2. in my c# project i uses this db5.mdx, using EF
3. now i copied the exe built from c# project to another folder and run it,
and got this, any hints pls ?
Unhandled Exception: System.InvalidOperationException: No connection string
name
d 'db5Entities' could be found in the application config file.
at System.Data.Entity.Internal.LazyInternalConnection.get_
ConnectionHasModel(
)
at System.Data.Entity.Internal.... 阅读全帖
1 2 下页 末页 (共2页)